Share via


OperationBinding.Binding プロパティ

定義

現在の Binding がメンバーとして含まれている OperationBinding を取得します。

public:
 property System::Web::Services::Description::Binding ^ Binding { System::Web::Services::Description::Binding ^ get(); };
public System.Web.Services.Description.Binding Binding { get; }
member this.Binding : System.Web.Services.Description.Binding
Public ReadOnly Property Binding As Binding

プロパティ値

現在の OperationBinding がメンバーとして含まれているバインディング。

// Create an OutputBinding for the Add operation.
OutputBinding^ myOutputBinding = gcnew OutputBinding;
myOutputBinding->Extensions->Add( mySoapBodyBinding );

// Add the OutputBinding to the OperationBinding. 
addOperationBinding->Output = myOutputBinding;
// Create an OutputBinding for the Add operation.
OutputBinding myOutputBinding = new OutputBinding();
myOutputBinding.Extensions.Add(mySoapBodyBinding);

// Add the OutputBinding to the OperationBinding.
addOperationBinding.Output = myOutputBinding;
' Create an OutputBinding for the Add operation.
Dim myOutputBinding As New OutputBinding()
myOutputBinding.Extensions.Add(mySoapBodyBinding)

' Add the OutputBinding to the OperationBinding.
addOperationBinding.Output = myOutputBinding

注釈

現在 OperationBinding の はコレクションの Operations メンバーです。

適用対象

こちらもご覧ください