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