C# Class BlogTalkRadio.Tools.CFT.TraceTransformationLogger

Logs the output of the transformation task to the System.Diagnostics.Trace.
Inheritance: IXmlTransformationLogger
Mostra file Open project: benjamine/CFT

Public Methods

Method Description
EndSection ( MessageType type, string message ) : void

Ends the section.

EndSection ( string message ) : void

Ends the section.

LogError ( string message ) : void

Logs the error.

LogError ( string file, int lineNumber, int linePosition, string message ) : void

Logs the error.

LogError ( string file, string message ) : void

Logs the error.

LogErrorFromException ( Exception ex ) : void

Logs the error from exception.

LogErrorFromException ( Exception ex, string file ) : void

Logs the error from exception.

LogErrorFromException ( Exception ex, string file, int lineNumber, int linePosition ) : void

Logs the error from exception.

LogMessage ( MessageType type, string message ) : void

Logs the message.

LogMessage ( string message ) : void

Logs the message.

LogWarning ( string message ) : void

Logs the warning.

LogWarning ( string file, int lineNumber, int linePosition, string message ) : void

Logs the warning.

LogWarning ( string file, string message ) : void

Logs the warning.

StartSection ( MessageType type, string message ) : void

Starts the section.

StartSection ( string message ) : void

Starts the section.

Method Details

EndSection() public method

Ends the section.
public EndSection ( MessageType type, string message ) : void
type MessageType The type.
message string The message.
return void

EndSection() public method

Ends the section.
public EndSection ( string message ) : void
message string The message.
return void

LogError() public method

Logs the error.
public LogError ( string message ) : void
message string The message.
return void

LogError() public method

Logs the error.
public LogError ( string file, int lineNumber, int linePosition, string message ) : void
file string The file.
lineNumber int The line number.
linePosition int The line position.
message string The message.
return void

LogError() public method

Logs the error.
public LogError ( string file, string message ) : void
file string The file.
message string The message.
return void

LogErrorFromException() public method

Logs the error from exception.
public LogErrorFromException ( Exception ex ) : void
ex System.Exception The ex.
return void

LogErrorFromException() public method

Logs the error from exception.
public LogErrorFromException ( Exception ex, string file ) : void
ex System.Exception The ex.
file string The file.
return void

LogErrorFromException() public method

Logs the error from exception.
public LogErrorFromException ( Exception ex, string file, int lineNumber, int linePosition ) : void
ex System.Exception The ex.
file string The file.
lineNumber int The line number.
linePosition int The line position.
return void

LogMessage() public method

Logs the message.
public LogMessage ( MessageType type, string message ) : void
type MessageType The type.
message string The message.
return void

LogMessage() public method

Logs the message.
public LogMessage ( string message ) : void
message string The message.
return void

LogWarning() public method

Logs the warning.
public LogWarning ( string message ) : void
message string The message.
return void

LogWarning() public method

Logs the warning.
public LogWarning ( string file, int lineNumber, int linePosition, string message ) : void
file string The file.
lineNumber int The line number.
linePosition int The line position.
message string The message.
return void

LogWarning() public method

Logs the warning.
public LogWarning ( string file, string message ) : void
file string The file.
message string The message.
return void

StartSection() public method

Starts the section.
public StartSection ( MessageType type, string message ) : void
type MessageType The type.
message string The message.
return void

StartSection() public method

Starts the section.
public StartSection ( string message ) : void
message string The message.
return void