예제 #1
0
 private void LoadNextPageAsync()
 {
     if (pending == null && nextCursor != 0)
     {
         pending = parent.GetNextPageAsync(this, nextCursor);
     }
 }
예제 #2
0
 private void LoadNextPageAsync()
 {
     if (pending == null && nextCursor != 0)
     {
         pending        = parent.GetNextPageAsync(this, nextCursor, out var message);
         pendingMessage = message;
     }
 }