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