Skip to content

SecurityEventTokenValidationError Class

A validation failure: the code a receiver branches on, and the sentence a log reader needs.

C#
public record SecurityEventTokenValidationError : System.IEquatable<Abblix.SecurityEvents.Validation.SecurityEventTokenValidationError>

Inheritance System.Object → SecurityEventTokenValidationError

Implements System.IEquatable<SecurityEventTokenValidationError>

Constructors

SecurityEventTokenValidationError(SecurityEventTokenErrorCode, string) Constructor

A validation failure: the code a receiver branches on, and the sentence a log reader needs.

C#
public SecurityEventTokenValidationError(Abblix.SecurityEvents.Validation.SecurityEventTokenErrorCode Code, string Description);

Parameters

Code SecurityEventTokenErrorCode

The failure class.

Description System.String

What exactly failed, in the words of the step that found it.

Properties

SecurityEventTokenValidationError.Code Property

The failure class.

C#
public Abblix.SecurityEvents.Validation.SecurityEventTokenErrorCode Code { get; init; }

Property Value

SecurityEventTokenErrorCode

SecurityEventTokenValidationError.Description Property

What exactly failed, in the words of the step that found it.

C#
public string Description { get; init; }

Property Value

System.String

Methods

SecurityEventTokenValidationError.ToString() Method

Returns the description - the half of the error a human reads.

C#
public override string ToString();

Returns

System.String