IssuerTokenResolver.TryResolveTokenCore Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Attempts to retrieve the key that is referenced in the specified object. (Override of the base class methods.)
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. (Override of the base class method.) |
TryResolveTokenCore(SecurityKeyIdentifierClause, SecurityToken) |
When overridden in a derived class, attempts to resolve the security token that matches the specified key identifier clause. (Override of the base class method.) |
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. (Override of the base class method.)
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 key identifier 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
if a security token can be retrieved for the specified key identifier; otherwise, false
.
Applies to
TryResolveTokenCore(SecurityKeyIdentifierClause, SecurityToken)
When overridden in a derived class, attempts to resolve the security token that matches the specified key identifier clause. (Override of the base class method.)
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 SecurityToken that represents the specified key identifier clause. This parameter is passed uninitialized.
Returns
true
if a security token can be retrieved for the specified key identifier clause; otherwise, false
.