C# Class Castle.MonoRail.Framework.Test.MockTrace

Represents a mock implementation of ITrace for unit test purposes.
Inheritance: ITrace
Afficher le fichier Open project: nats/castle-1.0.3-mono

Méthodes publiques

Méthode Description
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

Method Details

Warn() public méthode

Logs the specified message on the ASP.Net trace
public Warn ( string message ) : void
message string The message.
Résultat void

Warn() public méthode

Logs the specified message on the ASP.Net trace
public Warn ( string category, string message ) : void
category string The category.
message string The message.
Résultat void

Warn() public méthode

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.
Résultat void

Write() public méthode

Logs the specified message on the ASP.Net trace
public Write ( string message ) : void
message string The message.
Résultat void

Write() public méthode

Logs the specified message on the ASP.Net trace
public Write ( string category, string message ) : void
category string The category.
message string The message.
Résultat void

Write() public méthode

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.
Résultat void