Sdílet prostřednictvím


SamlAssertionKeyIdentifierClause Konstruktory

Definice

Přetížení

SamlAssertionKeyIdentifierClause(String)

Inicializuje novou instanci SamlAssertionKeyIdentifierClause třídy pomocí zadaného identifikátoru kontrolního výrazu SAML.

SamlAssertionKeyIdentifierClause(String, Byte[], Int32)

Inicializuje novou instanci třídy pomocí zadaného identifikátoru kontrolního SamlAssertionKeyIdentifierClause výrazu SAML, hodnoty nonce a délky klíče.

SamlAssertionKeyIdentifierClause(String)

Zdroj:
SamlAssertionKeyIdentifierClause.cs
Zdroj:
SamlAssertionKeyIdentifierClause.cs
Zdroj:
SamlAssertionKeyIdentifierClause.cs

Inicializuje novou instanci SamlAssertionKeyIdentifierClause třídy pomocí zadaného identifikátoru kontrolního výrazu SAML.

public:
 SamlAssertionKeyIdentifierClause(System::String ^ assertionId);
public SamlAssertionKeyIdentifierClause (string assertionId);
new System.IdentityModel.Tokens.SamlAssertionKeyIdentifierClause : string -> System.IdentityModel.Tokens.SamlAssertionKeyIdentifierClause
Public Sub New (assertionId As String)

Parametry

assertionId
String

Identifikátor objektu SamlAssertion , který obsahuje identifikátor klíče.

Výjimky

assertionId je null.

Poznámky

Předejte AssertionId vlastnost objektu do tohoto konstruktoru SamlAssertion .

Platí pro

SamlAssertionKeyIdentifierClause(String, Byte[], Int32)

Inicializuje novou instanci třídy pomocí zadaného identifikátoru kontrolního SamlAssertionKeyIdentifierClause výrazu SAML, hodnoty nonce a délky klíče.

public:
 SamlAssertionKeyIdentifierClause(System::String ^ assertionId, cli::array <System::Byte> ^ derivationNonce, int derivationLength);
public SamlAssertionKeyIdentifierClause (string assertionId, byte[] derivationNonce, int derivationLength);
new System.IdentityModel.Tokens.SamlAssertionKeyIdentifierClause : string * byte[] * int -> System.IdentityModel.Tokens.SamlAssertionKeyIdentifierClause
Public Sub New (assertionId As String, derivationNonce As Byte(), derivationLength As Integer)

Parametry

assertionId
String

Identifikátor objektu SamlAssertion , který obsahuje identifikátor klíče.

derivationNonce
Byte[]

Pole Byte obsahující typ nonce, který byl použit k vytvoření odvozeného klíče.

derivationLength
Int32

Velikost odvozeného klíče.

Výjimky

assertionId je null.

Poznámky

Předejte AssertionId vlastnost objektu do tohoto konstruktoru SamlAssertion .

Parametry derivationNonce a derivationLength jsou ignorovány, pokud SamlAssertionKeyIdentifierClause je třída serializována do odchozí zprávy SOAP.

Platí pro