Exemplo n.º 1
0
		public SearchResults Search(string query, int limit = 10, SearchFilter filter = null, IEnumerable<ModelType> modelTypes = null, DateTime? actionsSince = null, bool partial = false)
		{
			return _restClient.Request<SearchResults>(new SearchRequest(query, limit, filter, modelTypes, actionsSince, partial));
		}
Exemplo n.º 2
0
 public SearchResults Search(string query, int limit = 10, SearchFilter filter = null, IEnumerable <ModelType> modelTypes = null, DateTime?actionsSince = null, bool partial = false)
 {
     return(_restClient.Request <SearchResults>(new SearchRequest(query, limit, filter, modelTypes, actionsSince, partial)));
 }