Exemplo n.º 1
0
 public FileSystemErrorEventArgs(string path, string message, Exception exception = null)
 {
     FileSystemError = new FileSystemError(path, message, exception);
 }
Exemplo n.º 2
0
 protected virtual void OnFileSystemError(string path, string message, Exception exception = null)
 {
     FileSystemError?.Invoke(this, new FileSystemErrorEventArgs(path, message, exception));
 }
Exemplo n.º 3
0
 protected virtual void OnFileSystemError(string path, Exception ex)
 {
     FileSystemError?.Invoke(this, new FileSystemErrorEventArgs(path, ex.Message, ex));
 }