Пример #1
0
 public FileSystemErrorEventArgs(string path, string message, Exception exception = null)
 {
     FileSystemError = new FileSystemError(path, message, exception);
 }
Пример #2
0
 protected virtual void OnFileSystemError(string path, string message, Exception exception = null)
 {
     FileSystemError?.Invoke(this, new FileSystemErrorEventArgs(path, message, exception));
 }
Пример #3
0
 protected virtual void OnFileSystemError(string path, Exception ex)
 {
     FileSystemError?.Invoke(this, new FileSystemErrorEventArgs(path, ex.Message, ex));
 }