Beispiel #1
0
 /// <summary>
 /// Searches the server for results matching the values set on the query.
 /// The query can be null to search for all Application documents.
 /// </summary>
 public TypedArray <Application> GetApplications(Application.Query query = null)
 {
     return(Request <Application>(query));
 }
Beispiel #2
0
 /// <summary>
 /// Searches the server for results matching the values set on the query.
 /// The QueryOptions controls paging of results.
 /// </summary>
 public TypedArray <Application> GetApplications(QueryOptions options, Application.Query query)
 {
     return(Request <Application>(options, query));
 }