EmptySecurityKeyIdentifierClause Constructors

Definition

Initializes a new instance of the EmptySecurityKeyIdentifierClause class.

Overloads

EmptySecurityKeyIdentifierClause()

Initializes a new instance of the EmptySecurityKeyIdentifierClause class.

EmptySecurityKeyIdentifierClause(Object)

Initializes a new instance of the EmptySecurityKeyIdentifierClause class with the specified context.

EmptySecurityKeyIdentifierClause()

Initializes a new instance of the EmptySecurityKeyIdentifierClause class.

public:
 EmptySecurityKeyIdentifierClause();
public EmptySecurityKeyIdentifierClause ();
Public Sub New ()

Remarks

This constructor assumes that the user knows how to resolve the key required without any context.

Applies to

EmptySecurityKeyIdentifierClause(Object)

Initializes a new instance of the EmptySecurityKeyIdentifierClause class with the specified context.

public:
 EmptySecurityKeyIdentifierClause(System::Object ^ context);
public EmptySecurityKeyIdentifierClause (object context);
new System.IdentityModel.Tokens.EmptySecurityKeyIdentifierClause : obj -> System.IdentityModel.Tokens.EmptySecurityKeyIdentifierClause
Public Sub New (context As Object)

Parameters

context
Object

Used to provide a hint when there is a need resolve an empty clause to a particular key. In the case of SAML11 and SAML2 tokens that have signatures without a <KeyInfo> element, this property will contain the assertion that is currently being processed.

Applies to