ContextBindingElement コンストラクター

定義

ContextBindingElement クラスの新しいインスタンスを初期化します。

オーバーロード

名前 説明
ContextBindingElement()

ContextBindingElement クラスの新しいインスタンスを初期化します。

ContextBindingElement(ProtectionLevel)

指定したレベルの保護を使用して、 ContextBindingElement クラスの新しいインスタンスを初期化します。

ContextBindingElement(ProtectionLevel, ContextExchangeMechanism)

指定したレベルの保護と交換メカニズムを使用して、 ContextBindingElement クラスの新しいインスタンスを初期化します。

ContextBindingElement(ProtectionLevel, ContextExchangeMechanism, Uri)

指定した保護レベル、コンテキスト交換メカニズム、およびクライアント コールバック アドレスを使用して、 ContextBindingElement クラスの新しいインスタンスを初期化します。

ContextBindingElement(ProtectionLevel, ContextExchangeMechanism, Uri, Boolean)

指定した保護レベル、コンテキスト交換メカニズム、クライアント コールバック アドレス、およびコンテキスト管理が有効かどうかを指定する値を使用して、 ContextBindingElement クラスの新しいインスタンスを初期化します。

ContextBindingElement()

ContextBindingElement クラスの新しいインスタンスを初期化します。

public:
 ContextBindingElement();
public ContextBindingElement();
Public Sub New ()

注釈

SignProtectionLevelContextSoapHeaderContextExchangeMechanismの既定値を設定します。

適用対象

ContextBindingElement(ProtectionLevel)

指定したレベルの保護を使用して、 ContextBindingElement クラスの新しいインスタンスを初期化します。

public:
 ContextBindingElement(System::Net::Security::ProtectionLevel protectionLevel);
public ContextBindingElement(System.Net.Security.ProtectionLevel protectionLevel);
new System.ServiceModel.Channels.ContextBindingElement : System.Net.Security.ProtectionLevel -> System.ServiceModel.Channels.ContextBindingElement
Public Sub New (protectionLevel As ProtectionLevel)

パラメーター

protectionLevel
ProtectionLevel

バインド要素の ProtectionLevel

例外

protectionLevelが無効です。

注釈

ContextSoapHeaderContextExchangeMechanismの既定値を設定します。

適用対象

ContextBindingElement(ProtectionLevel, ContextExchangeMechanism)

指定したレベルの保護と交換メカニズムを使用して、 ContextBindingElement クラスの新しいインスタンスを初期化します。

public:
 ContextBindingElement(System::Net::Security::ProtectionLevel protectionLevel, System::ServiceModel::Channels::ContextExchangeMechanism contextExchangeMechanism);
public ContextBindingElement(System.Net.Security.ProtectionLevel protectionLevel, System.ServiceModel.Channels.ContextExchangeMechanism contextExchangeMechanism);
new System.ServiceModel.Channels.ContextBindingElement : System.Net.Security.ProtectionLevel * System.ServiceModel.Channels.ContextExchangeMechanism -> System.ServiceModel.Channels.ContextBindingElement
Public Sub New (protectionLevel As ProtectionLevel, contextExchangeMechanism As ContextExchangeMechanism)

パラメーター

protectionLevel
ProtectionLevel

バインド要素の ProtectionLevel

contextExchangeMechanism
ContextExchangeMechanism

バインディング要素のコンテキストを交換するために使用されるメカニズムを指定する ContextExchangeMechanism

例外

protectionLevel または contextExchangeMechanism が無効です。

適用対象

ContextBindingElement(ProtectionLevel, ContextExchangeMechanism, Uri)

指定した保護レベル、コンテキスト交換メカニズム、およびクライアント コールバック アドレスを使用して、 ContextBindingElement クラスの新しいインスタンスを初期化します。

public:
 ContextBindingElement(System::Net::Security::ProtectionLevel protectionLevel, System::ServiceModel::Channels::ContextExchangeMechanism contextExchangeMechanism, Uri ^ clientCallbackAddress);
public ContextBindingElement(System.Net.Security.ProtectionLevel protectionLevel, System.ServiceModel.Channels.ContextExchangeMechanism contextExchangeMechanism, Uri clientCallbackAddress);
new System.ServiceModel.Channels.ContextBindingElement : System.Net.Security.ProtectionLevel * System.ServiceModel.Channels.ContextExchangeMechanism * Uri -> System.ServiceModel.Channels.ContextBindingElement
Public Sub New (protectionLevel As ProtectionLevel, contextExchangeMechanism As ContextExchangeMechanism, clientCallbackAddress As Uri)

パラメーター

protectionLevel
ProtectionLevel

保護レベルはバインディング要素を形成します。

contextExchangeMechanism
ContextExchangeMechanism

バインディング要素のコンテキストを交換するために使用されるメカニズム。

clientCallbackAddress
Uri

クライアント コールバック アドレス。

適用対象

ContextBindingElement(ProtectionLevel, ContextExchangeMechanism, Uri, Boolean)

指定した保護レベル、コンテキスト交換メカニズム、クライアント コールバック アドレス、およびコンテキスト管理が有効かどうかを指定する値を使用して、 ContextBindingElement クラスの新しいインスタンスを初期化します。

public:
 ContextBindingElement(System::Net::Security::ProtectionLevel protectionLevel, System::ServiceModel::Channels::ContextExchangeMechanism contextExchangeMechanism, Uri ^ clientCallbackAddress, bool contextManagementEnabled);
public ContextBindingElement(System.Net.Security.ProtectionLevel protectionLevel, System.ServiceModel.Channels.ContextExchangeMechanism contextExchangeMechanism, Uri clientCallbackAddress, bool contextManagementEnabled);
new System.ServiceModel.Channels.ContextBindingElement : System.Net.Security.ProtectionLevel * System.ServiceModel.Channels.ContextExchangeMechanism * Uri * bool -> System.ServiceModel.Channels.ContextBindingElement
Public Sub New (protectionLevel As ProtectionLevel, contextExchangeMechanism As ContextExchangeMechanism, clientCallbackAddress As Uri, contextManagementEnabled As Boolean)

パラメーター

protectionLevel
ProtectionLevel

バインド要素の保護レベル。

contextExchangeMechanism
ContextExchangeMechanism

バインディング要素のコンテキストを交換するために使用されるメカニズム。

clientCallbackAddress
Uri

クライアント コールバック アドレス。

contextManagementEnabled
Boolean

true コンテキスト管理が有効な場合。それ以外の場合は false

適用対象