GetAllListsAsync() private method

Get information about all lists
private GetAllListsAsync ( int offset, int count = 10 ) : Task
offset int
count int
return Task
Example #1
0
 /// <summary>
 /// Get information about all lists
 /// </summary>
 public async Task <RootMCLists> GetAllListsAsync()
 {
     return(await listOverview.GetAllListsAsync());
 }
Example #2
0
 /// <summary>
 /// Get information about all lists
 /// <param name="offset">The number of records from a collection to skip. Iterating over large collections with this parameter can be slow</param>
 /// <param name="count">The number of records to return.</param>
 /// </summary>
 public async Task <RootMCLists> GetAllListsAsync(int offset = 0, int count = 10)
 {
     return(await listOverview.GetAllListsAsync(offset, count));
 }