The base class for a log writer.
public abstract class LogWriter : IDisposable
Writer instances can receive concurrent calls to Log(LogMessage) depending on processor mode. Configure filters before initialization and avoid mutating filter collections while logging is active.
kind:method, kind:property, kind:ctor. Press Esc to clear.LogWriter()Default constructor for LogWriter.DefaultFormatterBufferSizeDefault formatter buffer size used by writers.AcceptFiltersGets the filters to accept a log message. By default, if no accept filters are defined, all log messages are accepted.MinimumLevelThe minimum level this writer will logRejectFiltersGets the filters to reject a log message. By default, if no reject filters are defined, no log messages are rejected.Dispose()Disposes this writer.Flush()Flushes this writer.Log(LogMessage)Logs a message to this writer.