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

CloseCurrentFile() protected method

Called when the current file is closed.
protected CloseCurrentFile ( ) : void
return void
        protected override void CloseCurrentFile()
        {
            _writer.Write( (byte)0 );
            base.CloseCurrentFile();
            _writer.Dispose();
            _writer = null;
        }
    }