C# Class Stumps.EventLogWriter

A class that provides an implementation of T:Stumps.IMessageWriter that writes messages to the Windows event logs.
Inheritance: IMessageWriter
Exibir arquivo Open project: Cayan-LLC/stumps

Public Methods

Method Description
Information ( string message ) : void

Records an information message.

WriteDebug ( string message ) : void

Records a debug message.

WriteError ( string message ) : void

Records an error message.

Method Details

Information() public method

Records an information message.
public Information ( string message ) : void
message string The message to record.
return void

WriteDebug() public method

Records a debug message.
public WriteDebug ( string message ) : void
message string The message to record.
return void

WriteError() public method

Records an error message.
public WriteError ( string message ) : void
message string The message to record.
return void