Saml2AssertionKeyIdentifierClause Constructors

Definition

Initializes a new instance of the Saml2AssertionKeyIdentifierClause class.

Overloads

Saml2AssertionKeyIdentifierClause(String)

Initializes a new instance of the Saml2AssertionKeyIdentifierClause class for the specified ID.

Saml2AssertionKeyIdentifierClause(String, Byte[], Int32)

Initializes a new instance of the Saml2AssertionKeyIdentifierClause class for the specified ID, nonce, and key size.

Saml2AssertionKeyIdentifierClause(String)

Source:
Saml2AssertionKeyIdentifierClause.cs
Source:
Saml2AssertionKeyIdentifierClause.cs

Initializes a new instance of the Saml2AssertionKeyIdentifierClause class for the specified ID.

C#
public Saml2AssertionKeyIdentifierClause(string id);
C#
public Saml2AssertionKeyIdentifierClause(string assertionId);

Parameters

idassertionId
String

The ID that defines the clause to create.

Exceptions

id is null or an empty string.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)

Saml2AssertionKeyIdentifierClause(String, Byte[], Int32)

Initializes a new instance of the Saml2AssertionKeyIdentifierClause class for the specified ID, nonce, and key size.

C#
public Saml2AssertionKeyIdentifierClause(string id, byte[] derivationNonce, int derivationLength);

Parameters

id
String

The ID that defines the clause to create.

derivationNonce
Byte[]

An array of Byte that contains the nonce that was used to create a derived key. Sets the value that is returned by the GetDerivationNonce() method.

derivationLength
Int32

The size of the derived key. Sets the value of the DerivationLength property.

Exceptions

id is null or an empty string.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1