Class JwtRequestValidationContext
- Namespace
- Duende.IdentityServer.Validation
- Assembly
- Duende.IdentityServer.dll
Context for validating a JWT sent as a request parameter.
public class JwtRequestValidationContext
- Inheritance
-
JwtRequestValidationContext
- Inherited Members
Constructors
JwtRequestValidationContext()
public JwtRequestValidationContext()
Properties
Client
The Client for which the validation is being performed.
public Client Client { get; set; }
Property Value
- Client
IncludeJti
Indicates if the JTI claim is expected in the result.
public bool IncludeJti { get; }
Property Value
JwtTokenString
The JWT request object string.
public string JwtTokenString { get; set; }
Property Value
StrictJarValidation
Specifies whether the JWT typ and content-type for JWT secured authorization requests is checked according to IETF spec. This might break older OIDC conformant request objects.
public bool? StrictJarValidation { get; set; }
Property Value
- bool?