ServiceDescriptionFormatExtensionCollection.Item Property (Int32)

 

Gets or sets the value of a member of the ServiceDescriptionFormatExtensionCollection.

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

Public Property Item (
	index As Integer
) As Object

Parameters

index
Type: System.Int32

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

Property Value

Type: System.Object

The value of the ServiceDescriptionFormatExtension.

Console.WriteLine("Collection contains following types of elements: ")
' Display the 'Type' of the elements in collection.
Dim i As Integer
For i = 0 To myCollection.Count - 1
   Console.WriteLine(myCollection(i).GetType().ToString())
Next i

.NET Framework
Available since 1.1
Return to top
Show: