コード例 #1
0
 /// <summary>
 /// Searches the server for results matching the values set on the query.
 /// The query can be null to search for all Action documents.
 /// </summary>
 public TypedArray <Action> GetActions(Action.Query query = null)
 {
     return(Request <Action>(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 <Action> GetActions(QueryOptions options, Action.Query query)
 {
     return(Request <Action>(options, query));
 }