Skip to main content

OidcError Class

Abblix.Oidc.Server

Abblix.Oidc.Server.Common

OidcError Class

Represents an error that occurred during OAuth 2.0/OpenID Connect request processing.

public record OidcError : System.IEquatable<Abblix.Oidc.Server.Common.OidcError>

Inheritance System.Object → OidcError

Derived
InvalidDPoPProofError
MissingAuthenticationError
UseDPoPNonceError
AuthorizationRequestValidationError
BackChannelAuthenticationForbidden
BackChannelAuthenticationUnauthorized

Implements System.IEquatable<OidcError>

Constructors

OidcError(string, string) Constructor

Represents an error that occurred during OAuth 2.0/OpenID Connect request processing.

public OidcError(string Error, string ErrorDescription);

Parameters

Error System.String

The error code indicating the nature of the error.

ErrorDescription System.String

A human-readable description of the error.

Properties

OidcError.Error Property

The error code indicating the nature of the error.

public string Error { get; init; }

Property Value

System.String

OidcError.ErrorDescription Property

A human-readable description of the error.

public string ErrorDescription { get; init; }

Property Value

System.String