/// <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)); }
/// <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)); }