Beispiel #1
0
 public void Raise(TweetReceivedHandler handler, TweetEventArgs e)
 {
     if (handler != null)
     {
         handler(this, e);
     }
 }
 /// <summary>
 /// Raises tweet received event
 /// </summary>
 /// <param name="handler"></param>
 /// <param name="e"></param>
 public void Raise(TweetReceivedHandler handler, TweetEventArgs e)
 {
     if (handler != null)
     {
         handler(this, e);
     }
 }