ARCed.Core.LogSaveEventArgs.LogSaveEventArgs C# (CSharp) Method

LogSaveEventArgs() public method

Default constructor
public LogSaveEventArgs ( string filename, bool success, bool flushed ) : System
filename string FullPath where the file is saved
success bool Flag is save was successful
flushed bool Flag is buffer was cleared
return System
        public LogSaveEventArgs(string filename, bool success, bool flushed)
        {
            this.Filename = filename;
            this.Successful = success;
            this.BufferCleared = flushed;
        }
LogSaveEventArgs