Beispiel #1
0
 public void Raise(TwitterExceptionHandler handler, TwitterExceptionEventArgs e)
 {
     handler?.Invoke(this, e);
 }
 /// <summary>
 /// Raises Exception event
 /// </summary>
 /// <param name="handler"></param>
 /// <param name="e"></param>
 public void Raise(TwitterExceptionHandler handler, TwitterExceptionEventArgs e)
 {
     if (handler != null)
     {
         handler(this, e);
     }
 }