C# Класс Aspects.Logging.Tests.Utilities.MockLogger

The mock logger.
Наследование: ILogger
Показать файл Открыть проект

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

Метод Описание
Debug ( string message ) : void

The debug.

Error ( string message, Exception exception ) : void

The error.

Fatal ( string message, Exception exception ) : void

The fatal.

Info ( string message ) : void

The info.

Trace ( string message ) : void

The trace.

Warn ( string message ) : void

The warn.

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

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

The debug.
public Debug ( string message ) : void
message string /// The message. ///
Результат void

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

The error.
public Error ( string message, Exception exception ) : void
message string /// The message. ///
exception System.Exception /// The exception. ///
Результат void

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

The fatal.
public Fatal ( string message, Exception exception ) : void
message string /// The message. ///
exception System.Exception /// The exception. ///
Результат void

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

The info.
public Info ( string message ) : void
message string /// The message. ///
Результат void

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

The trace.
public Trace ( string message ) : void
message string /// The message. ///
Результат void

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

The warn.
public Warn ( string message ) : void
message string /// The message. ///
Результат void