public virtual void OnError(EntryErrorEventArgs e) { }
public override void OnError(EntryErrorEventArgs e) { WriteError(String.Format("Entry error. Path: \"{0}\". Message: \"{1}\".", e.Path, e.Exception.Message)); }
public override void OnError(EntryErrorEventArgs e) { WriteError(String.Format("Error: {0}", e.Exception.Message)); }
private static void RaiseErrorEvent(string path, Exception ex) { EntryErrorEventHandler temp = Error; if (temp != null) { EntryErrorEventArgs eventArgs = new EntryErrorEventArgs(path, ex); temp(eventArgs); } }