WindowsUserNameSecurityTokenHandler.ValidateToken(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.
Validates the specified token and returns its claims.
public:
override System::Collections::ObjectModel::ReadOnlyCollection<System::Security::Claims::ClaimsIdentity ^> ^ ValidateToken(System::IdentityModel::Tokens::SecurityToken ^ token);
public override System.Collections.ObjectModel.ReadOnlyCollection<System.Security.Claims.ClaimsIdentity> ValidateToken (System.IdentityModel.Tokens.SecurityToken token);
override this.ValidateToken : System.IdentityModel.Tokens.SecurityToken -> System.Collections.ObjectModel.ReadOnlyCollection<System.Security.Claims.ClaimsIdentity>
Public Overrides Function ValidateToken (token As SecurityToken) As ReadOnlyCollection(Of ClaimsIdentity)
Parameters
- token
- SecurityToken
The token to validate. An instance of UserNameSecurityToken.
Returns
The identities that are contained in the token.
Exceptions
token
is null
.
token
is not assignable from UserNameSecurityToken.
-or-
The UserName property of the specified token is not of the form user\domain
.
The Configuration property is null
.
LogonUser using the specified token failed.