Saml2AssertionKeyIdentifierClause Construtores
Definição
Inicializa uma nova instância da classe Saml2AssertionKeyIdentifierClause.Initializes a new instance of the Saml2AssertionKeyIdentifierClause class.
Sobrecargas
| Saml2AssertionKeyIdentifierClause(String) |
Inicializa uma nova instância da classe Saml2AssertionKeyIdentifierClause para a ID especificada.Initializes a new instance of the Saml2AssertionKeyIdentifierClause class for the specified ID. |
| Saml2AssertionKeyIdentifierClause(String, Byte[], Int32) |
Inicializa uma nova instância da classe Saml2AssertionKeyIdentifierClause para a ID, nonce e tamanho de chave especificados.Initializes a new instance of the Saml2AssertionKeyIdentifierClause class for the specified ID, nonce, and key size. |
Saml2AssertionKeyIdentifierClause(String)
Inicializa uma nova instância da classe Saml2AssertionKeyIdentifierClause para a ID especificada.Initializes a new instance of the Saml2AssertionKeyIdentifierClause class for the specified ID.
public:
Saml2AssertionKeyIdentifierClause(System::String ^ assertionId);
public:
Saml2AssertionKeyIdentifierClause(System::String ^ id);
public Saml2AssertionKeyIdentifierClause (string assertionId);
public Saml2AssertionKeyIdentifierClause (string id);
new System.IdentityModel.Tokens.Saml2AssertionKeyIdentifierClause : string -> System.IdentityModel.Tokens.Saml2AssertionKeyIdentifierClause
new System.IdentityModel.Tokens.Saml2AssertionKeyIdentifierClause : string -> System.IdentityModel.Tokens.Saml2AssertionKeyIdentifierClause
Public Sub New (assertionId As String)
Public Sub New (id As String)
Parâmetros
- assertionIdid
- String
Exceções
id é null ou é uma cadeia de caracteres vazia.id is null or an empty string.
Aplica-se a
Saml2AssertionKeyIdentifierClause(String, Byte[], Int32)
Inicializa uma nova instância da classe Saml2AssertionKeyIdentifierClause para a ID, nonce e tamanho de chave especificados.Initializes a new instance of the Saml2AssertionKeyIdentifierClause class for the specified ID, nonce, and key size.
public:
Saml2AssertionKeyIdentifierClause(System::String ^ id, cli::array <System::Byte> ^ derivationNonce, int derivationLength);
public Saml2AssertionKeyIdentifierClause (string id, byte[] derivationNonce, int derivationLength);
new System.IdentityModel.Tokens.Saml2AssertionKeyIdentifierClause : string * byte[] * int -> System.IdentityModel.Tokens.Saml2AssertionKeyIdentifierClause
Public Sub New (id As String, derivationNonce As Byte(), derivationLength As Integer)
Parâmetros
- id
- String
A ID que define a cláusula a ser criada.The ID that defines the clause to create.
- derivationNonce
- Byte[]
Uma matriz de Byte que contém o nonce que foi usado para criar uma chave derivada.An array of Byte that contains the nonce that was used to create a derived key. Define o valor retornado pelo método GetDerivationNonce().Sets the value that is returned by the GetDerivationNonce() method.
- derivationLength
- Int32
O tamanho da chave derivada.The size of the derived key. Define o valor da propriedade DerivationLength.Sets the value of the DerivationLength property.
Exceções
id é null ou é uma cadeia de caracteres vazia.id is null or an empty string.