共用方式為


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[]

Byte 陣列,這個陣列包含用來建立衍生金鑰的 Nonce。 設定 GetDerivationNonce() 方法所傳回的值。

length
Int32

衍生金鑰的大小。 設定 DerivationLength 屬性的值。

備註

Windows Communication Foundation (WCF) 不支援建立隱含衍生密鑰標識符。 不過,WCF 會處理包含隱含密鑰標識碼的傳入 SOAP 訊息。

適用於