C# Class Sharpex2D.Debug.Logging.Adapters.Streaming.StreamingAdapterBase

Inheritance: IAdapter
Mostrar archivo Open project: ThuCommix/Sharpex2D

Public Methods

Method Description
Write ( string message, StreamWriter writer ) : void

Logs a message.

Protected Methods

Method Description
StreamingAdapterBase ( Stream stream, Encoding encoding ) : System

Initializes a new StreamingAdapterBase class.

Private Methods

Method Description
IAdapter ( string message ) : void

Logs a message.

Method Details

StreamingAdapterBase() protected method

Initializes a new StreamingAdapterBase class.
protected StreamingAdapterBase ( Stream stream, Encoding encoding ) : System
stream Stream The Stream.
encoding System.Text.Encoding The Encoding.
return System

Write() public abstract method

Logs a message.
public abstract Write ( string message, StreamWriter writer ) : void
message string The Message.
writer System.IO.StreamWriter The StreamWriter.
return void