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
CheckNamestringHuman-readable check name.
PassedboolWhether the check passed.
DetailstringOptional detail message.
Properties
CheckName
Human-readable check name.
public string CheckName { get; init; }
Property Value
Detail
Optional detail message.
public string? Detail { get; init; }
Property Value
Passed
Whether the check passed.
public bool Passed { get; init; }