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 CustomField documents.
 /// </summary>
 public TypedArray <CustomField> GetCustomFields(CustomField.Query query = null)
 {
     return(Request <CustomField>(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 <CustomField> GetCustomFields(QueryOptions options, CustomField.Query query)
 {
     return(Request <CustomField>(options, query));
 }