Skip to content
Tracon

TraconEvalCheckRegistration

Namespace Tracon · Assembly Tracon.Core.dll

A custom check registration added through ITraconBuilder.AddEvalCheck(...).

public sealed record TraconEvalCheckRegistration : IEquatable<TraconEvalCheckRegistration>

objectTraconEvalCheckRegistration

IEquatable<TraconEvalCheckRegistration>

object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

TraconEvalCheckRegistration(string, EvalCheck)

Section titled “ TraconEvalCheckRegistration(string, EvalCheck)”

A custom check registration added through ITraconBuilder.AddEvalCheck(...).

public TraconEvalCheckRegistration(string Kind, EvalCheck Check)

Kind string

The check type name in EvalSuite.Checks.

Check EvalCheck

A code-defined check that does not call a model.

A code-defined check that does not call a model.

public EvalCheck Check { get; init; }

EvalCheck

The check type name in EvalSuite.Checks.

public string Kind { get; init; }

string

public void Deconstruct(out string Kind, out EvalCheck Check)

Kind string

Check EvalCheck

public override bool Equals(object? obj)

obj object?

bool

public bool Equals(TraconEvalCheckRegistration? other)

other TraconEvalCheckRegistration?

bool

public override int GetHashCode()

int

public override string ToString()

string

operator ==(TraconEvalCheckRegistration?, TraconEvalCheckRegistration?)

Section titled “ operator ==(TraconEvalCheckRegistration?, TraconEvalCheckRegistration?)”
public static bool operator ==(TraconEvalCheckRegistration? left, TraconEvalCheckRegistration? right)

left TraconEvalCheckRegistration?

right TraconEvalCheckRegistration?

bool

operator !=(TraconEvalCheckRegistration?, TraconEvalCheckRegistration?)

Section titled “ operator !=(TraconEvalCheckRegistration?, TraconEvalCheckRegistration?)”
public static bool operator !=(TraconEvalCheckRegistration? left, TraconEvalCheckRegistration? right)

left TraconEvalCheckRegistration?

right TraconEvalCheckRegistration?

bool