예제 #1
0
 public virtual void OnError(EntryErrorEventArgs e)
 {
 }
예제 #2
0
 public override void OnError(EntryErrorEventArgs e)
 {
     WriteError(String.Format("Entry error. Path: \"{0}\". Message: \"{1}\".", e.Path, e.Exception.Message));
 }
예제 #3
0
 public override void OnError(EntryErrorEventArgs e)
 {
     WriteError(String.Format("Error: {0}", e.Exception.Message));
 }
예제 #4
0
파일: Pusher.cs 프로젝트: rwakelam/Flow
 private static void RaiseErrorEvent(string path, Exception ex)
 {
     EntryErrorEventHandler temp = Error;
     if (temp != null)
     {
         EntryErrorEventArgs eventArgs = new EntryErrorEventArgs(path, ex);
         temp(eventArgs);
     }
 }