TokenReader Delegate
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.
Reads the security token.
public delegate Microsoft.IdentityModel.Tokens.SecurityToken TokenReader(string token, TokenValidationParameters validationParameters);
type TokenReader = delegate of string * TokenValidationParameters -> SecurityToken
Public Delegate Function TokenReader(token As String, validationParameters As TokenValidationParameters) As SecurityToken
Parameters
- token
- String
The security token.
- validationParameters
- TokenValidationParameters
The TokenValidationParameters to be used for validating the token.
Return Value
The read SecurityToken.