Sdílet prostřednictvím


Saml2AssertionKeyIdentifierClause Konstruktory

Definice

Inicializuje novou instanci Saml2AssertionKeyIdentifierClause třídy.

Přetížení

Saml2AssertionKeyIdentifierClause(String)

Inicializuje novou instanci Saml2AssertionKeyIdentifierClause třídy pro zadané ID.

Saml2AssertionKeyIdentifierClause(String, Byte[], Int32)

Inicializuje novou instanci Saml2AssertionKeyIdentifierClause třídy pro zadané ID, nonce a velikost klíče.

Saml2AssertionKeyIdentifierClause(String)

Zdroj:
Saml2AssertionKeyIdentifierClause.cs
Zdroj:
Saml2AssertionKeyIdentifierClause.cs
Zdroj:
Saml2AssertionKeyIdentifierClause.cs

Inicializuje novou instanci Saml2AssertionKeyIdentifierClause třídy pro zadané 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)

Parametry

assertionIdid
String

Výjimky

id je null nebo prázdný řetězec.

Platí pro

Saml2AssertionKeyIdentifierClause(String, Byte[], Int32)

Inicializuje novou instanci Saml2AssertionKeyIdentifierClause třídy pro zadané ID, nonce a velikost klíče.

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)

Parametry

id
String

ID definující klauzuli, která se má vytvořit.

derivationNonce
Byte[]

Pole Byte obsahující nonce, které bylo použito k vytvoření odvozeného klíče. Nastaví hodnotu, která je vrácena metodou GetDerivationNonce() .

derivationLength
Int32

Velikost odvozeného klíče. Nastaví hodnotu DerivationLength vlastnosti.

Výjimky

id je null nebo prázdný řetězec.

Platí pro