C# Класс Castle.MonoRail.Framework.Test.MockTrace

Represents a mock implementation of ITrace for unit test purposes.
Наследование: ITrace
Показать файл Открыть проект

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

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

Logs the specified message on the ASP.Net trace

Warn ( string category, string message ) : void

Logs the specified message on the ASP.Net trace

Warn ( string category, string message, Exception errorInfo ) : void

Logs the specified message on the ASP.Net trace

Write ( string message ) : void

Logs the specified message on the ASP.Net trace

Write ( string category, string message ) : void

Logs the specified message on the ASP.Net trace

Write ( string category, string message, Exception errorInfo ) : void

Logs the specified message on the ASP.Net trace

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

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

Logs the specified message on the ASP.Net trace
public Warn ( string message ) : void
message string The message.
Результат void

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

Logs the specified message on the ASP.Net trace
public Warn ( string category, string message ) : void
category string The category.
message string The message.
Результат void

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

Logs the specified message on the ASP.Net trace
public Warn ( string category, string message, Exception errorInfo ) : void
category string The category.
message string The message.
errorInfo System.Exception The error info.
Результат void

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

Logs the specified message on the ASP.Net trace
public Write ( string message ) : void
message string The message.
Результат void

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

Logs the specified message on the ASP.Net trace
public Write ( string category, string message ) : void
category string The category.
message string The message.
Результат void

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

Logs the specified message on the ASP.Net trace
public Write ( string category, string message, Exception errorInfo ) : void
category string The category.
message string The message.
errorInfo System.Exception The error info.
Результат void