Class MultiTermVectorsRequestParameters
- Namespace
- Elasticsearch.Net
- Assembly
- Elasticsearch.Net.dll
Request options for Mtermvectors
http://www.elastic.co/guide/en/elasticsearch/reference/master/docs-multi-termvectors.html
public class MultiTermVectorsRequestParameters : RequestParameters<MultiTermVectorsRequestParameters>, IRequestParameters
- Inheritance
-
MultiTermVectorsRequestParameters
- Implements
- Inherited Members
Constructors
MultiTermVectorsRequestParameters()
public MultiTermVectorsRequestParameters()
Properties
DefaultHttpMethod
public override HttpMethod DefaultHttpMethod { get; }
Property Value
FieldStatistics
Specifies if document count, sum of document frequencies and sum of total term frequencies should be returned. Applies to all returned documents unless otherwise specified in body "params" or "docs".
public bool? FieldStatistics { get; set; }
Property Value
- bool?
Fields
A comma-separated list of fields to return. Applies to all returned documents unless otherwise specified in body "params" or "docs".
public string[] Fields { get; set; }
Property Value
- string[]
Offsets
Specifies if term offsets should be returned. Applies to all returned documents unless otherwise specified in body "params" or "docs".
public bool? Offsets { get; set; }
Property Value
- bool?
Parent
Parent id of documents. Applies to all returned documents unless otherwise specified in body "params" or "docs".
[Obsolete("Scheduled to be removed in 7.0, the parent parameter has been deprecated from elasticsearch, please use routing instead directly.")]
public string Parent { get; set; }
Property Value
Payloads
Specifies if term payloads should be returned. Applies to all returned documents unless otherwise specified in body "params" or "docs".
public bool? Payloads { get; set; }
Property Value
- bool?
Positions
Specifies if term positions should be returned. Applies to all returned documents unless otherwise specified in body "params" or "docs".
public bool? Positions { get; set; }
Property Value
- bool?
Preference
Specify the node or shard the operation should be performed on (default: random) .Applies to all returned documents unless otherwise specified in body "params" or "docs".
public string Preference { get; set; }
Property Value
Realtime
Specifies if requests are real-time as opposed to near-real-time (default: true).
public bool? Realtime { get; set; }
Property Value
- bool?
Routing
Specific routing value. Applies to all returned documents unless otherwise specified in body "params" or "docs".
public string Routing { get; set; }
Property Value
TermStatistics
Specifies if total term frequency and document frequency should be returned. Applies to all returned documents unless otherwise specified in body "params" or "docs".
public bool? TermStatistics { get; set; }
Property Value
- bool?
Version
Explicit version number for concurrency control
public long? Version { get; set; }
Property Value
- long?
VersionType
Specific version type
public VersionType? VersionType { get; set; }