Table of Contents

Struct ProgressMessage

Namespace
ReFuel.IO
Assembly
ReFuel.Common.dll

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

Level LogLevel

The log level of the message.

Text string

The message text.

Properties

Level

The log level of the message.

public LogLevel Level { readonly get; set; }

Property Value

LogLevel

Text

The message text.

public string Text { readonly get; set; }

Property Value

string

TimeStamp

The time at which the message was generated.

public DateTime TimeStamp { readonly get; init; }

Property Value

DateTime