RunErrorClassification
Namespace AgentPrism · Assembly
AgentPrism.Abstractions.dllThe result of an IRunErrorClassifier classification.
public sealed record RunErrorClassification : IEquatable<RunErrorClassification>Inheritance
Section titled “Inheritance”object ← RunErrorClassification
Implements
Section titled “Implements”IEquatable<RunErrorClassification>
Inherited Members
Section titled “Inherited Members”object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Constructors
Section titled “Constructors”RunErrorClassification()
Section titled “ RunErrorClassification()”public RunErrorClassification()Properties
Section titled “Properties”The class the error falls into.
public required RunErrorClass Class { get; init; }Property Value
Section titled “Property Value”Fingerprint
Section titled “ Fingerprint”A digest of the normalized error message. Used to cluster repeats of the same failure; computed after variable parts such as identifiers, numbers, dates, and quoted text are removed.
public required string Fingerprint { get; init; }Property Value
Section titled “Property Value”Methods
Section titled “Methods”Equals(object?)
Section titled “ Equals(object?)”public override bool Equals(object? obj)Parameters
Section titled “Parameters”obj object?
Returns
Section titled “Returns”Equals(RunErrorClassification?)
Section titled “ Equals(RunErrorClassification?)”public bool Equals(RunErrorClassification? other)Parameters
Section titled “Parameters”other RunErrorClassification?
Returns
Section titled “Returns”GetHashCode()
Section titled “ GetHashCode()”public override int GetHashCode()Returns
Section titled “Returns”ToString()
Section titled “ ToString()”public override string ToString()Returns
Section titled “Returns”Operators
Section titled “Operators”operator ==(RunErrorClassification?, RunErrorClassification?)
Section titled “ operator ==(RunErrorClassification?, RunErrorClassification?)”public static bool operator ==(RunErrorClassification? left, RunErrorClassification? right)Parameters
Section titled “Parameters”left RunErrorClassification?
right RunErrorClassification?
Returns
Section titled “Returns”operator !=(RunErrorClassification?, RunErrorClassification?)
Section titled “ operator !=(RunErrorClassification?, RunErrorClassification?)”public static bool operator !=(RunErrorClassification? left, RunErrorClassification? right)Parameters
Section titled “Parameters”left RunErrorClassification?
right RunErrorClassification?