SecurityTokenAuthenticator.CanValidateTokenCore(SecurityToken) 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.
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.