コード例 #1
0
 public void NotifyUnfollowed(TwitterUser source, TwitterUser target)
 {
     if (!_proxy.NotifyUnfollowed(source, target) && this.Next != null)
     {
         this.Next.NotifyUnfollowed(source, target);
     }
 }
コード例 #2
0
 public void NotifyUnfollowed(TwitterUser source, TwitterUser target)
 {
     if (!_proxy.NotifyUnfollowed(source, target))
     {
         Next?.NotifyUnfollowed(source, target);
     }
 }