CK.Monitoring.MonitorBinaryFileOutput.Write C# (CSharp) Method

Write() public method

Writes a log entry (that can actually be a IMulticastLogEntry).
public Write ( ILogEntry e ) : void
e ILogEntry The log entry.
return void
        public void Write( ILogEntry e )
        {
            BeforeWrite();
            e.WriteLogEntry( _writer );
            AfterWrite();
        }