static void DeletedDirectMessage(TwitterStreamDeletedEvent e)
 {
     if (!jsonView)
     {
         Console.WriteLine(string.Format("Deleted message: {0}", e.UserId));
     }
 }
 static void DeletedTweet(TwitterStreamDeletedEvent e)
 {
     if (!jsonView)
     {
         Console.WriteLine(string.Format("Deleted tweet: Id: {0}; UserId: {1}", e.Id, e.UserId));
     }
 }
Example #3
0
        void OnStatusDeleted(TwitterStreamDeletedEvent status)
        {
            Trace.Call(status);

            try {
            } catch (Exception ex) {
#if LOG4NET
                Logger.Error("OnStatusDeleted()", ex);
#endif
            }
        }
 void DeletedTweet(TwitterStreamDeletedEvent e)
 {
     this._repository.Delete(e.Id);
 }
 private void Deleted(TwitterStreamDeletedEvent status)
 {
 }
 private void DirectMessageDeleted(TwitterStreamDeletedEvent status)
 {
 }
 /// <summary>
 /// ???
 /// </summary>
 /// <param name="e"></param>
 /// <remarks>Example override: string message = string.Format("Deleted message: {0}", e.UserId);</remarks>
 public virtual void DeletedDirectMessage(TwitterStreamDeletedEvent e)
 {
     string message = string.Format("Deleted message: {0}", e.UserId);
 }
 /// <summary>
 /// If a user deleted a tweet
 /// </summary>
 /// <param name="e"></param>
 /// <remarks>Example override: string message = string.Format("Deleted tweet: Id: {0}; UserId: {1}", e.Id, e.UserId);</remarks>
 public virtual void DeletedTweet(TwitterStreamDeletedEvent e)
 {
     string message = string.Format("Deleted tweet: Id: {0}; UserId: {1}", e.Id, e.UserId);
 }