Skip to main content

EncodedJsonWebToken Class

Abblix.Oidc.Server

Abblix.Oidc.Server.Features.Tokens

EncodedJsonWebToken Class

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

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.

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.

public string EncodedJwt { get; init; }

Property Value

System.String

EncodedJsonWebToken.Token Property

The decoded model representation of the JWT.

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

Property Value

JsonWebToken