Class CliDiagnostic
Represents a CLI diagnostic with code and message.
public sealed record CliDiagnostic : IEquatable<CliDiagnostic>
- Inheritance
-
CliDiagnostic
- Implements
- Inherited Members
Constructors
CliDiagnostic(int, string)
Represents a CLI diagnostic with code and message.
public CliDiagnostic(int Code, string Message)
Parameters
Properties
Code
Diagnostic code.
public int Code { get; init; }
Property Value
Message
Diagnostic message.
public string Message { get; init; }