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
Source:
Saml2AssertionKeyIdentifierClause.cs

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)

Parameters

assertionIdid
String

Exceptions

id is null or an empty string.

Applies to

Saml2AssertionKeyIdentifierClause(String, Byte[], Int32)

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)

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