次の方法で共有


UseKey コンストラクター

定義

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

オーバーロード

UseKey()

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

UseKey(SecurityKeyIdentifier)

指定したセキュリティ キー識別子句を使用して、UseKey クラスの新しいインスタンスを初期化します。

UseKey(SecurityToken)

指定したセキュリティ トークンを使用して、UseKey クラスの新しいインスタンスを初期化します。

UseKey(SecurityKeyIdentifier, SecurityToken)

指定したセキュリティ キー識別子とセキュリティ トークンを使用して、UseKey クラスの新しいインスタンスを初期化します。

UseKey()

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

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

注釈

拡張性のためのコンストラクター。

適用対象

UseKey(SecurityKeyIdentifier)

指定したセキュリティ キー識別子句を使用して、UseKey クラスの新しいインスタンスを初期化します。

public:
 UseKey(System::IdentityModel::Tokens::SecurityKeyIdentifier ^ ski);
public UseKey (System.IdentityModel.Tokens.SecurityKeyIdentifier ski);
new System.IdentityModel.Protocols.WSTrust.UseKey : System.IdentityModel.Tokens.SecurityKeyIdentifier -> System.IdentityModel.Protocols.WSTrust.UseKey
Public Sub New (ski As SecurityKeyIdentifier)

パラメーター

ski
SecurityKeyIdentifier

使用する必要がある既存のキーを表す SecurityKeyIdentifier

注釈

要求者がトークンをセキュリティ キー識別子に変換する方法を認識している場合、またはトークンが既にセキュリティ キー識別子である場合は、このコンストラクターを使用します。

プロパティはToken、新しいUseKeyインスタンスで にnull設定されます。

適用対象

UseKey(SecurityToken)

指定したセキュリティ トークンを使用して、UseKey クラスの新しいインスタンスを初期化します。

public:
 UseKey(System::IdentityModel::Tokens::SecurityToken ^ token);
public UseKey (System.IdentityModel.Tokens.SecurityToken token);
new System.IdentityModel.Protocols.WSTrust.UseKey : System.IdentityModel.Tokens.SecurityToken -> System.IdentityModel.Protocols.WSTrust.UseKey
Public Sub New (token As SecurityToken)

パラメーター

token
SecurityToken

使用する必要がある既存のキーを表す SecurityToken

注釈

プロパティはSecurityKeyIdentifier、新しいUseKeyインスタンスで にnull設定されます。

適用対象

UseKey(SecurityKeyIdentifier, SecurityToken)

指定したセキュリティ キー識別子とセキュリティ トークンを使用して、UseKey クラスの新しいインスタンスを初期化します。

public:
 UseKey(System::IdentityModel::Tokens::SecurityKeyIdentifier ^ ski, System::IdentityModel::Tokens::SecurityToken ^ token);
public UseKey (System.IdentityModel.Tokens.SecurityKeyIdentifier ski, System.IdentityModel.Tokens.SecurityToken token);
new System.IdentityModel.Protocols.WSTrust.UseKey : System.IdentityModel.Tokens.SecurityKeyIdentifier * System.IdentityModel.Tokens.SecurityToken -> System.IdentityModel.Protocols.WSTrust.UseKey
Public Sub New (ski As SecurityKeyIdentifier, token As SecurityToken)

パラメーター

ski
SecurityKeyIdentifier

使用する必要がある既存のキーを表す SecurityKeyIdentifier

token
SecurityToken

使用する必要がある既存のキーを表す SecurityToken

注釈

シリアライザーからセキュリティ トークン サービス (STS) に詳細情報を渡すには、このコンストラクターを使用します。

適用対象