SecurityToken.CreateKeyIdentifierClause<T> Method

Definition

Creates the specified key identifier clause.

public:
generic <typename T>
 where T : System::IdentityModel::Tokens::SecurityKeyIdentifierClause virtual T CreateKeyIdentifierClause();
public virtual T CreateKeyIdentifierClause<T> () where T : System.IdentityModel.Tokens.SecurityKeyIdentifierClause;
abstract member CreateKeyIdentifierClause : unit -> 'T (requires 'T :> System.IdentityModel.Tokens.SecurityKeyIdentifierClause)
override this.CreateKeyIdentifierClause : unit -> 'T (requires 'T :> System.IdentityModel.Tokens.SecurityKeyIdentifierClause)
Public Overridable Function CreateKeyIdentifierClause(Of T As SecurityKeyIdentifierClause) () As T

Type Parameters

T

A SecurityKeyIdentifierClause that specifies the key identifier to create.

Returns

T

A SecurityKeyIdentifierClause that is a key identifier clause for the security token.

Remarks

Use the CanCreateKeyIdentifierClause method to determine whether a security token can create a specific key identifier. To create the key identifier call the CreateKeyIdentifierClause method.

The default implementation supports key identifier clauses of type LocalIdKeyIdentifierClause. If a key identifier clause of type LocalIdKeyIdentifierClause cannot be created, a NotSupportedException is thrown.

Applies to

See also