Пример #1
0
 public void NotifyDeleted(long statusId, TwitterStatus deleted)
 {
     if (!_proxy.NotifyDeleted(statusId, deleted) && this.Next != null)
     {
         this.Next.NotifyDeleted(statusId, deleted);
     }
 }
Пример #2
0
 public void NotifyDeleted(long statusId, TwitterStatus deleted)
 {
     if (!_proxy.NotifyDeleted(statusId, deleted))
     {
         Next?.NotifyDeleted(statusId, deleted);
     }
 }