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

CloseCurrentFile() protected method

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