SecurityTokenResolver.TryResolveTokenCore Method

Definition

Attempts to retrieve the key that is referenced in the specified object.

Overloads

TryResolveTokenCore(SecurityKeyIdentifier, SecurityToken)

When overridden in a derived class, attempts to retrieve the security token that matches at least one of the key identifier clauses contained within the specified key identifier.

TryResolveTokenCore(SecurityKeyIdentifierClause, SecurityToken)

When overridden in a derived class, attempts to resolve the security token that matches the specified key identifier clause.

TryResolveTokenCore(SecurityKeyIdentifier, SecurityToken)

Source:
SecurityTokenResolver.cs
Source:
SecurityTokenResolver.cs

When overridden in a derived class, attempts to retrieve the security token that matches at least one of the key identifier clauses contained within the specified key identifier.

C#
protected abstract bool TryResolveTokenCore(System.IdentityModel.Tokens.SecurityKeyIdentifier keyIdentifier, out System.IdentityModel.Tokens.SecurityToken token);

Parameters

keyIdentifier
SecurityKeyIdentifier

The SecurityKeyIdentifier to create a security token for.

token
SecurityToken

When this method returns, contains a SecurityToken that represents the specified key identifier. This parameter is passed uninitialized.

Returns

true when a security token can be retrieved for the specified key identifier; otherwise, false.

Remarks

The TryResolveTokenCore method is called by the TryResolveToken and ResolveToken methods.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.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

TryResolveTokenCore(SecurityKeyIdentifierClause, SecurityToken)

Source:
SecurityTokenResolver.cs
Source:
SecurityTokenResolver.cs

When overridden in a derived class, attempts to resolve the security token that matches the specified key identifier clause.

C#
protected abstract bool TryResolveTokenCore(System.IdentityModel.Tokens.SecurityKeyIdentifierClause keyIdentifierClause, out System.IdentityModel.Tokens.SecurityToken token);

Parameters

keyIdentifierClause
SecurityKeyIdentifierClause

The SecurityKeyIdentifierClause to create a security token for.

token
SecurityToken

When this method returns, contains a SecurityToken that represents the specified key identifier clause. This parameter is passed uninitialized.

Returns

true when a security token can be retrieved for the specified key identifier clause; otherwise, false.

Remarks

The TryResolveTokenCore method is called by the TryResolveToken and ResolveToken methods.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.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