Share via


SecurityKeyIdentifierClause コンストラクター

定義

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

オーバーロード

SecurityKeyIdentifierClause(String)

指定したキー識別子句の型を使用して、SecurityKeyIdentifierClause クラスの新しいインスタンスを初期化します。

SecurityKeyIdentifierClause(String, Byte[], Int32)

指定したキー識別句型、nonce、および派生キーの長さを使用して、SecurityKeyIdentifierClause クラスの新しいインスタンスを初期化します。

SecurityKeyIdentifierClause(String)

ソース:
SecurityKeyIdentifierClause.cs
ソース:
SecurityKeyIdentifierClause.cs
ソース:
SecurityKeyIdentifierClause.cs

指定したキー識別子句の型を使用して、SecurityKeyIdentifierClause クラスの新しいインスタンスを初期化します。

protected:
 SecurityKeyIdentifierClause(System::String ^ clauseType);
protected SecurityKeyIdentifierClause (string clauseType);
new System.IdentityModel.Tokens.SecurityKeyIdentifierClause : string -> System.IdentityModel.Tokens.SecurityKeyIdentifierClause
Protected Sub New (clauseType As String)

パラメーター

clauseType
String

キー識別子句型。 ClauseType プロパティの値を設定します。

注釈

このセキュリティ キー識別子が XML にシリアル化される場合は、clauseType パラメーターが ValueType 要素の <SecurityTokenReference> 属性としてシリアル化されます。

適用対象

SecurityKeyIdentifierClause(String, Byte[], Int32)

ソース:
SecurityKeyIdentifierClause.cs
ソース:
SecurityKeyIdentifierClause.cs
ソース:
SecurityKeyIdentifierClause.cs

指定したキー識別句型、nonce、および派生キーの長さを使用して、SecurityKeyIdentifierClause クラスの新しいインスタンスを初期化します。

protected:
 SecurityKeyIdentifierClause(System::String ^ clauseType, cli::array <System::Byte> ^ nonce, int length);
protected SecurityKeyIdentifierClause (string clauseType, byte[] nonce, int length);
new System.IdentityModel.Tokens.SecurityKeyIdentifierClause : string * byte[] * int -> System.IdentityModel.Tokens.SecurityKeyIdentifierClause
Protected Sub New (clauseType As String, nonce As Byte(), length As Integer)

パラメーター

clauseType
String

キー識別子句型。 ClauseType プロパティの値を設定します。

nonce
Byte[]

派生キーの作成に使用された nonce を格納する Byte の配列。 GetDerivationNonce() メソッドから返される値を設定します。

length
Int32

派生キーのサイズ。 DerivationLength プロパティの値を設定します。

注釈

Windows Communication Foundation (WCF) では、暗黙的な派生キー識別子の作成はサポートされていません。 ただし、WCF は、暗黙的なキー識別子を含む受信 SOAP メッセージを処理します。

適用対象