SecurityKeyIdentifierClause Construtores

Definição

Inicializa uma nova instância da classe SecurityKeyIdentifierClause.

Sobrecargas

SecurityKeyIdentifierClause(String)

Inicializa uma nova instância da classe SecurityKeyIdentifierClause usando o tipo de cláusula de identificador de chave especificado.

SecurityKeyIdentifierClause(String, Byte[], Int32)

Inicializa uma nova instância da classe SecurityKeyIdentifierClause usando o tipo de cláusula de identificador de chave, o nonce e o comprimento de chave derivada especificados.

SecurityKeyIdentifierClause(String)

Inicializa uma nova instância da classe SecurityKeyIdentifierClause usando o tipo de cláusula de identificador de chave especificado.

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)

Parâmetros

clauseType
String

O tipo de cláusula de identificador de chave. Define o valor da propriedade ClauseType.

Comentários

Quando esse identificador de chave de segurança é serializado em XML, o clauseType parâmetro é serializado como o ValueType atributo do <SecurityTokenReference> elemento.

Aplica-se a

SecurityKeyIdentifierClause(String, Byte[], Int32)

Inicializa uma nova instância da classe SecurityKeyIdentifierClause usando o tipo de cláusula de identificador de chave, o nonce e o comprimento de chave derivada especificados.

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

Parâmetros

clauseType
String

O tipo de cláusula de identificador de chave. Define o valor da propriedade ClauseType.

noncederivationNonce
Byte[]

Uma matriz de Byte que contém o nonce que foi usado para criar uma chave derivada. Define o valor retornado pelo método GetDerivationNonce().

lengthderivationLength
Int32

O tamanho da chave derivada. Define o valor da propriedade DerivationLength.

Comentários

Windows Communication Foundation (WCF) não dá suporte à criação de identificadores de chave derivadas implícitas. No entanto, o WCF processa mensagens SOAP de entrada que contêm identificador de chave implícita.

Aplica-se a