ARCed.Core.LogSaveEventArgs.LogSaveEventArgs C# (CSharp) 메소드

LogSaveEventArgs() 공개 메소드

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
리턴 System
        public LogSaveEventArgs(string filename, bool success, bool flushed)
        {
            this.Filename = filename;
            this.Successful = success;
            this.BufferCleared = flushed;
        }
LogSaveEventArgs