ARCed.Core.LogSaveEventArgs.LogSaveEventArgs C# (CSharp) Méthode

LogSaveEventArgs() public méthode

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