Skip to content
Abblix

EncodedJsonWebToken Class

Represents an encoded JSON Web Token (JWT) along with its decoded model representation.

C#
public record EncodedJsonWebToken : System.IEquatable<Abblix.Oidc.Server.Features.Tokens.EncodedJsonWebToken>

Inheritance System.Object → EncodedJsonWebToken

Implements System.IEquatable<EncodedJsonWebToken>

Constructors

EncodedJsonWebToken(JsonWebToken, string) Constructor

Represents an encoded JSON Web Token (JWT) along with its decoded model representation.

C#
public EncodedJsonWebToken(Abblix.Jwt.JsonWebToken Token, string EncodedJwt);

Parameters

Token JsonWebToken

The decoded model representation of the JWT.

EncodedJwt System.String

The encoded string form of the JWT.

Properties

EncodedJsonWebToken.EncodedJwt Property

The encoded string form of the JWT.

C#
public string EncodedJwt { get; init; }

Property Value

System.String

EncodedJsonWebToken.Token Property

The decoded model representation of the JWT.

C#
public Abblix.Jwt.JsonWebToken Token { get; init; }

Property Value

JsonWebToken