Table of Contents

Interface IMessage

Namespace
Loehnert.Lisrt.Messaging
Assembly
Loehnert.Lisrt.dll

Interface for all logged and shown messages. Text should be set as a property in a *.RESX file to enable a culture-setting.

public interface IMessage : ITranslatableText
Inherited Members

Properties

ID

Gets the message ID.

int? ID { get; }

Property Value

int?

Level

Gets the log level.

LogLevel Level { get; }

Property Value

LogLevel

Module

Gets the origin module.

ILisrtModule Module { get; }

Property Value

ILisrtModule

Text

Gets the localized text of the message.

string Text { get; }

Property Value

string

TimeStamp

Gets the message time stamp.

DateTime TimeStamp { get; }

Property Value

DateTime