SecurityTokenAuthenticator.CanValidateTokenCore(SecurityToken) Method

Definition

When overridden in a derived class, gets a value indicating whether the specified security token can be validated by this security token authenticator.

protected:
 abstract bool CanValidateTokenCore(System::IdentityModel::Tokens::SecurityToken ^ token);
protected abstract bool CanValidateTokenCore (System.IdentityModel.Tokens.SecurityToken token);
abstract member CanValidateTokenCore : System.IdentityModel.Tokens.SecurityToken -> bool
Protected MustOverride Function CanValidateTokenCore (token As SecurityToken) As Boolean

Parameters

token
SecurityToken

The SecurityToken to be validated.

Returns

true when token can be validated; otherwise, false.

Remarks

The CanValidateTokenCore method is called by the CanValidateToken method to determine whether this security token authenticator can authenticate the security token type for token. This does not authenticate the security token; that is performed by the ValidateToken method.

Applies to

See also