WSHttpBinding.CreateBindingElements メソッド

定義

現在のバインディングに含まれるバインディング要素の順序付けられたコレクションを返します。

public:
 override System::ServiceModel::Channels::BindingElementCollection ^ CreateBindingElements();
public override System.ServiceModel.Channels.BindingElementCollection CreateBindingElements ();
override this.CreateBindingElements : unit -> System.ServiceModel.Channels.BindingElementCollection
Public Overrides Function CreateBindingElements () As BindingElementCollection

戻り値

BindingElementCollection バインドにより記述されたバインド要素の順序付けられたスタックを含む WSHttpBinding

例外

設定されたトランスポート セキュリティ モードでは、有効になっている信頼できるセッションを提供できません。

次の例は、BindingElementCollection バインドによって記述されたバインド要素の順序付けられたスタックを含む WSHttpBinding を取得する方法を示しています。

WSHttpBinding wsHttpBinding = new WSHttpBinding();
BindingElementCollection beCollection = wsHttpBinding.CreateBindingElements();
Dim wsHttpBinding As New WSHttpBinding()
Dim beCollection As BindingElementCollection = wsHttpBinding.CreateBindingElements()

注釈

バインド要素の順序は重要です。 これは、プロトコルおよびトランスポート チャネルが構築され、スタックされる順序を反映します。

適用対象