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