SecurityTokenResolver.TryResolveTokenCore 方法

定义

尝试检索在指定的对象中引用的密钥。

重载

TryResolveTokenCore(SecurityKeyIdentifier, SecurityToken)

当在派生类中重写时,尝试检索至少与指定的密钥标识符中包含的密钥标识符子句之一相匹配的安全令牌。

TryResolveTokenCore(SecurityKeyIdentifierClause, SecurityToken)

当在派生类中重写时,尝试解析与指定的密钥标识符子句相匹配的安全令牌。

TryResolveTokenCore(SecurityKeyIdentifier, SecurityToken)

Source:
SecurityTokenResolver.cs
Source:
SecurityTokenResolver.cs
Source:
SecurityTokenResolver.cs

当在派生类中重写时,尝试检索至少与指定的密钥标识符中包含的密钥标识符子句之一相匹配的安全令牌。

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

参数

keyIdentifier
SecurityKeyIdentifier

要为其创建安全令牌的 SecurityKeyIdentifier

token
SecurityToken

当此方法返回时,包含一个 SecurityToken,它表示指定的密钥标识符。 此参数未经初始化即被传递。

返回

如果可以为指定的密钥标识符检索安全令牌,则为 true;否则为 false

注解

TryResolveTokenCore 方法由 TryResolveTokenResolveToken 方法调用。

适用于

TryResolveTokenCore(SecurityKeyIdentifierClause, SecurityToken)

Source:
SecurityTokenResolver.cs
Source:
SecurityTokenResolver.cs
Source:
SecurityTokenResolver.cs

当在派生类中重写时,尝试解析与指定的密钥标识符子句相匹配的安全令牌。

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

参数

keyIdentifierClause
SecurityKeyIdentifierClause

要为其创建安全令牌的 SecurityKeyIdentifierClause

token
SecurityToken

当此方法返回时,包含一个 SecurityToken,它表示指定的密钥标识符子句。 此参数未经初始化即被传递。

返回

如果可以为指定的密钥标识符子句检索安全令牌,则为 true;否则为 false

注解

TryResolveTokenCore 方法由 TryResolveTokenResolveToken 方法调用。

适用于