AggregateTokenResolver.TryResolveTokenCore Method

Definition

Overloads

TryResolveTokenCore(SecurityKeyIdentifier, SecurityToken)

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)

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

TryResolveTokenCore(SecurityKeyIdentifier, SecurityToken)

Source:
AggregateTokenResolver.cs
Source:
AggregateTokenResolver.cs
Source:
AggregateTokenResolver.cs

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

protected:
 override bool TryResolveTokenCore(System::IdentityModel::Tokens::SecurityKeyIdentifier ^ keyIdentifier, [Runtime::InteropServices::Out] System::IdentityModel::Tokens::SecurityToken ^ % token);
protected override bool TryResolveTokenCore (System.IdentityModel.Tokens.SecurityKeyIdentifier keyIdentifier, out System.IdentityModel.Tokens.SecurityToken token);
override this.TryResolveTokenCore : System.IdentityModel.Tokens.SecurityKeyIdentifier * SecurityToken -> bool
Protected Overrides Function TryResolveTokenCore (keyIdentifier As SecurityKeyIdentifier, ByRef token As SecurityToken) As Boolean

Parameters

keyIdentifier
SecurityKeyIdentifier

The security key identifier to retrieve the token for.

token
SecurityToken

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

Returns

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

Exceptions

keyIdentifier is null.

Remarks

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

Applies to

TryResolveTokenCore(SecurityKeyIdentifierClause, SecurityToken)

Source:
AggregateTokenResolver.cs
Source:
AggregateTokenResolver.cs
Source:
AggregateTokenResolver.cs

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

protected:
 override bool TryResolveTokenCore(System::IdentityModel::Tokens::SecurityKeyIdentifierClause ^ keyIdentifierClause, [Runtime::InteropServices::Out] System::IdentityModel::Tokens::SecurityToken ^ % token);
protected override bool TryResolveTokenCore (System.IdentityModel.Tokens.SecurityKeyIdentifierClause keyIdentifierClause, out System.IdentityModel.Tokens.SecurityToken token);
override this.TryResolveTokenCore : System.IdentityModel.Tokens.SecurityKeyIdentifierClause * SecurityToken -> bool
Protected Overrides Function TryResolveTokenCore (keyIdentifierClause As SecurityKeyIdentifierClause, ByRef token As SecurityToken) As Boolean

Parameters

keyIdentifierClause
SecurityKeyIdentifierClause

The key identifier clause to create a security token for.

token
SecurityToken

When this method returns, contains a security token 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 TryResolveTokenCore method is called by the TryResolveToken and ResolveToken methods.

Applies to