Declaration
public ConsoleLoggingStream(
Stream underlyingStream,
string readPrefix,
string writePrefix
)
Summary
Constructor.
Parameters
Stream | underlyingStream | The underlying stream on which all operations are to be performed. |
string | readPrefix | If not null, all calls to ConsoleLoggingStream.Read(byte[], int, int) will print a single line to the console starting with this prefix and showing a hex dump of the bytes read. |
string | writePrefix | If not null, all calls to ConsoleLoggingStream.Read(byte[], int, int) will print a single line to the console starting with this prefix and showing a hex dump of the bytes written. |