Table of Contents

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

JwtHeader

Payload

Decoded JWT payload.

public string Payload { get; set; }

Property Value

string

Token

Unmodified JWT.

public JwtParts Token { get; set; }

Property Value

JwtParts

Methods

Create(JwtHeader, string, JwtParts)

public static JwtDecoderContext Create(JwtHeader header, string decodedPayload, JwtParts jwt)

Parameters

header JwtHeader
decodedPayload string
jwt JwtParts

Returns

JwtDecoderContext