MobileServiceCollection<TTable,TCollection>.LoadMoreItemsAsync Method

Definition

Overloads

LoadMoreItemsAsync(Int32)

Load more items asynchronously. Controls which support incremental loading on such as GridView on Windows 8 call this method automatically. In other cases you should call this method yourself.

LoadMoreItemsAsync(CancellationToken, Int32)

Load more items asynchronously. Controls which support incremental loading on such as GridView on Windows 8 call this method automatically. In other cases you should call this method yourself.

LoadMoreItemsAsync(Int32)

Load more items asynchronously. Controls which support incremental loading on such as GridView on Windows 8 call this method automatically. In other cases you should call this method yourself.

public System.Threading.Tasks.Task<int> LoadMoreItemsAsync (int count = 0);
Parameters
count
Int32

The number of items to load. This parameter overrides the pageSize specified in the constructor.

Returns

The result of loading the items.

LoadMoreItemsAsync(CancellationToken, Int32)

Load more items asynchronously. Controls which support incremental loading on such as GridView on Windows 8 call this method automatically. In other cases you should call this method yourself.

public System.Threading.Tasks.Task<int> LoadMoreItemsAsync (System.Threading.CancellationToken token, int count = 0);
Parameters
token
CancellationToken

The cancellation token to be used to cancel the task.

count
Int32

The number of items to load. This parameter overrides the pageSize specified in the constructor.

Returns

The result of loading the items.