Class JwtDecoderContext
- Namespace
- JWT
- Assembly
- Coherence.JWT.dll
public class JwtDecoderContext
- Inheritance
-
JwtDecoderContext
Constructors
JwtDecoderContext()
public JwtDecoderContext()
Properties
Header
Deserialized JWT header.
public JwtHeader Header { get; set; }
Property Value
Payload
Decoded JWT payload.
public string Payload { get; set; }
Property Value
Token
Unmodified JWT.
public JwtParts Token { get; set; }
Property Value
Methods
Create(JwtHeader, string, JwtParts)
public static JwtDecoderContext Create(JwtHeader header, string decodedPayload, JwtParts jwt)