C# 클래스 Castle.MonoRail.Framework.Test.MockTrace

Represents a mock implementation of ITrace for unit test purposes.
상속: ITrace
파일 보기 프로젝트 열기: nats/castle-1.0.3-mono

공개 메소드들

메소드 설명
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