ServiceDescriptionCollection::Item Property (Int32)

 

Gets or sets the value of a ServiceDescription at the specified zero-based index.

Namespace:   System.Web.Services.Description
Assembly:  System.Web.Services (in System.Web.Services.dll)

public:
property ServiceDescription^ default[
	int index
] {
	ServiceDescription^ get(int index);
	void set(int index, ServiceDescription^ value);
}

Parameters

index
Type: System::Int32

The zero-based index of the ServiceDescription whose value is modified or returned.

Property Value

Type: System.Web.Services.Description::ServiceDescription^

The value of a ServiceDescription at the specified index.

// Display element properties in the collection using 
// the Item property.
for ( int i = 0; i < myCollection->Count; i++ )
   Console::WriteLine( myCollection[ i ]->TargetNamespace );

.NET Framework
Available since 1.1
Return to top
Show: