Struct ProgressMessage
A simple message that is generated through a process.
public record struct ProgressMessage : IEquatable<ProgressMessage>
- Implements
- Inherited Members
Constructors
ProgressMessage(LogLevel, string)
A simple message that is generated through a process.
public ProgressMessage(LogLevel Level, string Text)
Parameters
Properties
Level
The log level of the message.
public LogLevel Level { readonly get; set; }
Property Value
Text
The message text.
public string Text { readonly get; set; }
Property Value
TimeStamp
The time at which the message was generated.
public DateTime TimeStamp { readonly get; init; }