BindingCollection.Item Property (Int32)

 

Gets or sets the value of a Binding 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 Binding

Parameters

index
Type: System.Int32

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

Property Value

Type: System.Web.Services.Description.Binding

A Binding.

Exception Condition
ArgumentOutOfRangeException

The index parameter is less than zero.

- or -

The index parameter is greater than Count.

Dim i As Integer

While i < myServiceDescription.Bindings.Count
   Console.WriteLine((ControlChars.Cr + "Binding " + i.ToString()))
   ' Get Binding at index i.
   myBinding = myServiceDescription.Bindings(i)
   Console.WriteLine((ControlChars.Tab + " Name : " + myBinding.Name))
   Console.WriteLine((ControlChars.Tab + " Type : " + myBinding.Type.ToString()))
   i = i + 1
End While

.NET Framework
Available since 1.1
Return to top
Show: