UserNameSecurityTokenAuthenticator.CanValidateTokenCore(SecurityToken) Method

Definition

Gets a value indicating 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 UserNameSecurityToken security token; otherwise, false.

Remarks

The CanValidateTokenCore method does not authenticate the security token; that is performed by the ValidateTokenCore method.

Applies to