Method | Description | |
---|---|---|
Explain ( bool explain ) : ISearchParams |
If true, the response will include additional search score explanations.
|
|
Facets ( ) : ISearchParams |
ISearchFacets used to aggregate information collected on a particluar result set.
|
|
Fields ( ) : ISearchParams |
List of fields values that should be returned in the result assuming that they were indexed.
|
|
Highlighting ( HighLightStyle highLightStyle ) : ISearchParams |
Allows setting of additional highlighting on the result set of matching terms.
|
|
Limit ( int limit ) : ISearchParams |
Limits the number of matching results from a returned result-set.
|
|
Skip ( int skip ) : ISearchParams |
Skip indicates how many matching results to skip on the result set before returing matches.
|
|
Sort ( ) : ISearchParams |
Configures the list of fields which are used for sorting the search result. Fields with a prefix of "-" indicate a decending nature. If no sort is provided, it is equal to sort("-_score"), since the server will sort it by score in descending order by default.
|
|
Timeout ( System.TimeSpan timeout ) : ISearchParams |
The server side timeout allows to specify an upper boundary of request execution so that it potentially doesn't run infinitely.
|
|
ToJson ( ) : Newtonsoft.Json.Linq.JObject | ||
ToString ( ) : string |
Returns a System.String that represents this instance.
|
|
WithConsistency ( ScanConsistency consistency ) : ISearchParams |
The ScanConsistency you require for you ISearchQueryResults.
|
public Explain ( bool explain ) : ISearchParams | ||
explain | bool | |
return | ISearchParams |
public Highlighting ( HighLightStyle highLightStyle ) : ISearchParams | ||
highLightStyle | HighLightStyle | The |
return | ISearchParams |
public Timeout ( System.TimeSpan timeout ) : ISearchParams | ||
timeout | System.TimeSpan | The max length of time that that will be given to execute the query. |
return | ISearchParams |
public ToJson ( ) : Newtonsoft.Json.Linq.JObject | ||
return | Newtonsoft.Json.Linq.JObject |
public WithConsistency ( ScanConsistency consistency ) : ISearchParams | ||
consistency | ScanConsistency | The |
return | ISearchParams |