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