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);
member this.LoadMoreItemsAsync : int -> System.Threading.Tasks.Task<int>
Public Function LoadMoreItemsAsync (Optional count As Integer = 0) As Task(Of Integer)

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.

Applies to

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);
member this.LoadMoreItemsAsync : System.Threading.CancellationToken * int -> System.Threading.Tasks.Task<int>
Public Function LoadMoreItemsAsync (token As CancellationToken, Optional count As Integer = 0) As Task(Of Integer)

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.

Applies to