Прочетете на английски Редактиране

Споделяне чрез


SecurityToken.ResolveKeyIdentifierClause(SecurityKeyIdentifierClause) Method

Definition

Gets the key for the specified key identifier clause.

C#
public virtual System.IdentityModel.Tokens.SecurityKey ResolveKeyIdentifierClause(System.IdentityModel.Tokens.SecurityKeyIdentifierClause keyIdentifierClause);

Parameters

keyIdentifierClause
SecurityKeyIdentifierClause

A SecurityKeyIdentifierClause to get the key for.

Returns

A SecurityKey that represents the key.

Remarks

The ResolveKeyIdentifierClause method calls the MatchesKeyIdentifierClause to first determine whether the specified key identifier clause is the same as this instance.

The default implementation returns the first element of the SecurityKeys collection if the collection is not empty and if MatchesKeyIdentifierClause returns true; otherwise, it returns null.

Notes to Inheritors

When you inherit from SecurityToken, and implement the ResolveKeyIdentifierClause(SecurityKeyIdentifierClause) method and keyIdentifierClause cannot be resolved, return null. An exception should not be thrown from the ResolveKeyIdentifierClause(SecurityKeyIdentifierClause) method.

Applies to

Продукт Версии
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 3.0, 3.5, 4.0, 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)

See also