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 Item (
	index As Integer
) As ServiceDescription

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 collection using 'Item' property.
Dim i As Integer
For i = 0 To myCollection.Count - 1
   Console.WriteLine(myCollection(i).TargetNamespace)
Next i

.NET Framework
Available since 1.1
Return to top
Show: