C# Класс Castle.MonoRail.Framework.Adapters.TraceAdapter

Delegates to ASP.Net TraceContext.
Наследование: ITrace
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
TraceAdapter ( System.Web.TraceContext traceContext ) : System

Initializes a new instance of the TraceAdapter class.

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

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

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

Initializes a new instance of the TraceAdapter class.
public TraceAdapter ( System.Web.TraceContext traceContext ) : System
traceContext System.Web.TraceContext The trace context.
Результат System

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