Beispiel #1
0
 public void NotifyBlocked(TwitterUser source, TwitterUser target)
 {
     if (!_proxy.NotifyBlocked(source, target) && this.Next != null)
     {
         this.Next.NotifyBlocked(source, target);
     }
 }
Beispiel #2
0
 public void NotifyBlocked(TwitterUser source, TwitterUser target)
 {
     if (!_proxy.NotifyBlocked(source, target))
     {
         Next?.NotifyBlocked(source, target);
     }
 }