SecurityTokenResolver.TryResolveToken Method

Definition

Attempts to retrieve the security token that is referenced in the specified object.

Overloads

TryResolveToken(SecurityKeyIdentifier, SecurityToken)

Attempts to retrieve the security token that matches one of the key identifier clauses contained within the specified key identifier.

TryResolveToken(SecurityKeyIdentifierClause, SecurityToken)

Attempts to retrieve the security token that matches the specified key identifier clause.

TryResolveToken(SecurityKeyIdentifier, SecurityToken)

Source:
SecurityTokenResolver.cs
Source:
SecurityTokenResolver.cs

Attempts to retrieve the security token that matches one of the key identifier clauses contained within the specified key identifier.

C#
public bool TryResolveToken(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.

Exceptions

keyIdentifier is null.

Remarks

The TryResolveToken and ResolveToken methods differ in what happens when the key identifier cannot be resolved to a security token. The TryResolveToken method returns false, whereas the ResolveToken method throws an exception.

Applies to

.NET Framework 4.8.1 a ďalšie verzie
Produkt Verzie
.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

TryResolveToken(SecurityKeyIdentifierClause, SecurityToken)

Source:
SecurityTokenResolver.cs
Source:
SecurityTokenResolver.cs

Attempts to retrieve the security token that matches the specified key identifier clause.

C#
public bool TryResolveToken(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.

Exceptions

keyIdentifierClause is null.

Remarks

The TryResolveToken and ResolveToken methods differ in what happens when the key identifier clause cannot be resolved to a security token. The TryResolveToken method returns false, whereas the ResolveToken method throws an exception.

Applies to

.NET Framework 4.8.1 a ďalšie verzie
Produkt Verzie
.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