C# Класс Newtonsoft.Json.Serialization.MemoryTraceWriter

Represents a trace writer that writes to memory. When the trace message limit is reached then old trace messages will be removed as new messages are added.
Наследование: ITraceWriter
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
GetTraceMessages ( ) : IEnumerable

Returns an enumeration of the most recent trace messages.

MemoryTraceWriter ( ) : System

Initializes a new instance of the MemoryTraceWriter class.

ToString ( ) : string

Returns a String of the most recent trace messages.

Trace ( TraceLevel level, string message, Exception ex ) : void

Writes the specified trace level, message and optional exception.

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

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

Returns an enumeration of the most recent trace messages.
public GetTraceMessages ( ) : IEnumerable
Результат IEnumerable

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

Initializes a new instance of the MemoryTraceWriter class.
public MemoryTraceWriter ( ) : System
Результат System

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

Returns a String of the most recent trace messages.
public ToString ( ) : string
Результат string

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

Writes the specified trace level, message and optional exception.
public Trace ( TraceLevel level, string message, Exception ex ) : void
level TraceLevel The at which to write this trace.
message string The trace message.
ex System.Exception The trace exception. This parameter is optional.
Результат void