Example #1
0
 public void NotifyLimitationInfoGot(IOAuthCredential account, int trackLimit)
 {
     if (!_proxy.NotifyLimitationInfoGot(account, trackLimit) && this.Next != null)
     {
         this.Next.NotifyLimitationInfoGot(account, trackLimit);
     }
 }
Example #2
0
 public void NotifyLimitationInfoGot(IOAuthCredential account, int trackLimit)
 {
     if (!_proxy.NotifyLimitationInfoGot(account, trackLimit))
     {
         Next?.NotifyLimitationInfoGot(account, trackLimit);
     }
 }