C# Класс SigStat.Common.Helpers.LogEntry

Represents a single entry of the log, consisting of a timestamp, a level, a sender and the message.
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
Level LogLevel
Message string
Sender object
Timestamp DateTime

Открытые методы

Метод Описание
ToString ( ) : string

Format the contained data to string, divided by tab characters. Use this to display the entry in the console.

Приватные методы

Метод Описание
LogEntry ( DateTime timestamp, LogLevel level, object sender, string message ) : System

Описание методов

ToString() публичный Метод

Format the contained data to string, divided by tab characters. Use this to display the entry in the console.
public ToString ( ) : string
Результат string

Описание свойств

Level публичное свойство

Log level of the entry.
public LogLevel Level
Результат LogLevel

Message публичное свойство

Main content of the entry.
public string Message
Результат string

Sender публичное свойство

Reference of the object that created the entry.
public object Sender
Результат object

Timestamp публичное свойство

Exact date and time of the entry's creation.
public DateTime Timestamp
Результат DateTime