BindingCollection.Item[] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the Binding instance specified by the parameter passed in.
Overloads
Item[Int32] |
Gets or sets the value of a Binding at the specified zero-based index. |
Item[String] |
Gets a Binding specified by its name. |
Item[Int32]
Gets or sets the value of a Binding at the specified zero-based index.
public:
property System::Web::Services::Description::Binding ^ default[int] { System::Web::Services::Description::Binding ^ get(int index); void set(int index, System::Web::Services::Description::Binding ^ value); };
public System.Web.Services.Description.Binding this[int index] { get; set; }
member this.Item(int) : System.Web.Services.Description.Binding with get, set
Default Public Property Item(index As Integer) As Binding
Parameters
Property Value
A Binding
.
Exceptions
Examples
for ( int i = 0; i < myServiceDescription->Bindings->Count; ++i )
{
Console::WriteLine( "\nBinding {0}", i );
// Get Binding at index i.
myBinding = myServiceDescription->Bindings[ i ];
Console::WriteLine( "\t Name : {0}", myBinding->Name );
Console::WriteLine( "\t Type : {0}", myBinding->Type );
}
for(int i=0; i < myServiceDescription.Bindings.Count; ++i)
{
Console.WriteLine("\nBinding " + i );
// Get Binding at index i.
myBinding = myServiceDescription.Bindings[i];
Console.WriteLine("\t Name : " + myBinding.Name);
Console.WriteLine("\t Type : " + myBinding.Type);
}
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
Applies to
Item[String]
Gets a Binding specified by its name.
public:
property System::Web::Services::Description::Binding ^ default[System::String ^] { System::Web::Services::Description::Binding ^ get(System::String ^ name); };
public System.Web.Services.Description.Binding this[string name] { get; }
member this.Item(string) : System.Web.Services.Description.Binding
Default Public ReadOnly Property Item(name As String) As Binding
Parameters
Property Value
A Binding
.
Examples
The following example searches the Bindings
property of myServiceDescription for a Binding named "MathServiceHttpGet".
// Get Binding Name = S"MathServiceSoap".
myBinding = myServiceDescription->Bindings[ "MathServiceHttpGet" ];
if ( myBinding != nullptr )
{
Console::WriteLine( "\n\nName : {0}", myBinding->Name );
Console::WriteLine( "Type : {0}", myBinding->Type );
}
// Get Binding Name = "MathServiceSoap".
myBinding = myServiceDescription.Bindings["MathServiceHttpGet"];
if (myBinding != null)
{
Console.WriteLine("\n\nName : " + myBinding.Name);
Console.WriteLine("Type : " + myBinding.Type);
}
' Get Binding Name = "MathServiceSoap".
myBinding = myServiceDescription.Bindings("MathServiceHttpGet")
If Not (myBinding Is Nothing) Then
Console.WriteLine((ControlChars.Cr + ControlChars.Cr + "Name : " + myBinding.Name))
Console.WriteLine(("Type : " + myBinding.Type.ToString()))
End If
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET