Writes formatted log messages to a Stream.
public sealed class StreamLogWriter : LogWriter, IDisposable
Concurrent writes are synchronized by this writer.
kind:method, kind:property, kind:ctor. Press Esc to clear.StreamLogWriter(Stream, Boolean)Initializes a writer that uses UTF-8 encoding.StreamLogWriter(Stream, Encoding, Boolean)Initializes a writer with the specified stream and encoding.StreamLogWriter(Stream, Encoding)Initializes a writer with the specified stream and encoding and does not own the stream.StreamLogWriter(Stream)Initializes a writer that uses UTF-8 encoding and does not own the stream.AutoFlushGets a value indicating whether the underlying stream is flushed after each write.EncodingGets the encoding used to convert formatted text to bytes.FormatterGets the formatter used to render log messages.NewLineGets the newline written after each log entry.StreamGets the destination stream.Dispose()Disposes this writer.Flush()Flushes this writer.Log(LogMessage)Logs a message to this writer.