C# Class Papercut.Smtp.Logger

Summary description for Logger.
Mostra file Open project: wiggle/papercut-web

Public Methods

Method Description
Write ( string message ) : void

The write.

Write ( string message, int connectionId ) : void

The write.

WriteDebug ( string message ) : void

The write debug.

WriteDebug ( string message, int connectionId ) : void

The write debug.

WriteError ( string message, Exception e ) : void

The write error.

WriteError ( string message, Exception e, int connectionId ) : void

The write error.

WriteWarning ( string message ) : void

The write warning.

WriteWarning ( string message, int connectionId ) : void

The write warning.

Method Details

Write() public static method

The write.
public static Write ( string message ) : void
message string /// The message. ///
return void

Write() public static method

The write.
public static Write ( string message, int connectionId ) : void
message string /// The message. ///
connectionId int /// The connection id. ///
return void

WriteDebug() public static method

The write debug.
public static WriteDebug ( string message ) : void
message string /// The message. ///
return void

WriteDebug() public static method

The write debug.
public static WriteDebug ( string message, int connectionId ) : void
message string /// The message. ///
connectionId int /// The connection id. ///
return void

WriteError() public static method

The write error.
public static WriteError ( string message, Exception e ) : void
message string /// The message. ///
e System.Exception /// The e. ///
return void

WriteError() public static method

The write error.
public static WriteError ( string message, Exception e, int connectionId ) : void
message string /// The message. ///
e System.Exception /// The e. ///
connectionId int /// The connection id. ///
return void

WriteWarning() public static method

The write warning.
public static WriteWarning ( string message ) : void
message string /// The message. ///
return void

WriteWarning() public static method

The write warning.
public static WriteWarning ( string message, int connectionId ) : void
message string /// The message. ///
connectionId int /// The connection id. ///
return void