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