Class ConsoleMessage
Console message.
public sealed record ConsoleMessage : IEquatable<ConsoleMessage>
- Inheritance
-
ConsoleMessage
- Implements
- Inherited Members
Constructors
ConsoleMessage(string, string, string)
Console message.
public ConsoleMessage(string Source, string Level, string Text)
Parameters
Properties
Column
Column number in the resource that generated this message (1-based).
public long? Column { get; init; }
Property Value
- long?
Level
Message severity.
public string Level { get; init; }
Property Value
Line
Line number in the resource that generated this message (1-based).
public long? Line { get; init; }
Property Value
- long?
Source
Message source.
public string Source { get; init; }
Property Value
Text
Message text.
public string Text { get; init; }
Property Value
Url
URL of the message origin.
public string? Url { get; init; }