Ejemplo n.º 1
0
 public void NotifyFollowed(TwitterUser source, TwitterUser target)
 {
     if (!_proxy.NotifyFollowed(source, target) && this.Next != null)
     {
         this.Next.NotifyFollowed(source, target);
     }
 }
Ejemplo n.º 2
0
 public void NotifyFollowed(TwitterUser source, TwitterUser target)
 {
     if (!_proxy.NotifyFollowed(source, target))
     {
         Next?.NotifyFollowed(source, target);
     }
 }