コード例 #1
0
ファイル: FileSystem.cs プロジェクト: dreshetnyak/FileBadger
 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));
 }