X509SecurityTokenAuthenticator.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.
Gets a value that indicates whether the specified security token can be validated by this security token authenticator.
protected:
override bool CanValidateTokenCore(System::IdentityModel::Tokens::SecurityToken ^ token);
protected override bool CanValidateTokenCore (System.IdentityModel.Tokens.SecurityToken token);
override this.CanValidateTokenCore : System.IdentityModel.Tokens.SecurityToken -> bool
Protected Overrides Function CanValidateTokenCore (token As SecurityToken) As Boolean
Parameters
- token
- SecurityToken
The SecurityToken to be validated.
Returns
true
when token
is a X509SecurityToken security token or a class that derives from X509SecurityToken; otherwise, false
.
Remarks
The CanValidateTokenCore method does not authenticate the security token; that is performed by the ValidateTokenCore method.