Exemple #1
0
 /// <summary>
 /// Gets a list of Chino Applications from the server
 /// </summary>
 /// <param name="start">where to start the list</param>
 /// <param name="limit">amount of records to return</param>
 /// <returns>a new instance of the <see cref="ApplicationList"/></returns>
 /// <exception cref="ChinoApiException">thrown by the api server, when recieving incorrect request data</exception>
 public ApplicationList List(int start, int limit)
 {
     return(ChinoApplication.List(this.client, start, limit));
 }