Пример #1
0
 protected virtual void DispatchErrorEvent(string type, string description)
 {
     var evnt = new Events.ErrorEventArgs(type, description);
     var handler = OnError;
     if (handler != null)
         handler(this, evnt);
 }
Пример #2
0
 public bool RaiseErrorEvent(Events.ErrorEventArgs e)
 {
     return(false);
 }