Table of Contents

Class HealthCheckResult

Namespace
FishMMO.Installer
Assembly
FishMMO-Installer.dll

A single health check result.

public sealed record HealthCheckResult : IEquatable<HealthCheckResult>
Inheritance
HealthCheckResult
Implements
Inherited Members

Constructors

HealthCheckResult(string, bool, string?)

A single health check result.

public HealthCheckResult(string CheckName, bool Passed, string? Detail = null)

Parameters

CheckName string

Human-readable check name.

Passed bool

Whether the check passed.

Detail string

Optional detail message.

Properties

CheckName

Human-readable check name.

public string CheckName { get; init; }

Property Value

string

Detail

Optional detail message.

public string? Detail { get; init; }

Property Value

string

Passed

Whether the check passed.

public bool Passed { get; init; }

Property Value

bool