Search Results for

    Show / Hide Table of Contents

    Class MultiGetRequestParameters

    Request options for MultiGet

    https://opensearch.org/docs/latest/api-reference/document-apis/multi-get/

    Inheritance
    object
    RequestParameters<MultiGetRequestParameters>
    MultiGetRequestParameters
    Implements
    IRequestParameters
    Inherited Members
    RequestParameters<MultiGetRequestParameters>.CustomResponseBuilder
    RequestParameters<MultiGetRequestParameters>.QueryString
    RequestParameters<MultiGetRequestParameters>.RequestConfiguration
    RequestParameters<MultiGetRequestParameters>.ContainsQueryString(string)
    RequestParameters<MultiGetRequestParameters>.GetQueryStringValue<TOut>(string)
    RequestParameters<MultiGetRequestParameters>.GetResolvedQueryStringValue(string, IConnectionConfigurationValues)
    RequestParameters<MultiGetRequestParameters>.SetQueryString(string, object)
    RequestParameters<MultiGetRequestParameters>.Q<TOut>(string)
    RequestParameters<MultiGetRequestParameters>.Q(string, object)
    RequestParameters<MultiGetRequestParameters>.SetAcceptHeader(string)
    RequestParameters<MultiGetRequestParameters>.AcceptHeaderFromFormat(string)
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: OpenSearch.Net
    Assembly: OpenSearch.Net.dll
    Syntax
    public class MultiGetRequestParameters : RequestParameters<MultiGetRequestParameters>, IRequestParameters

    Properties

    | Edit this page View Source

    DefaultHttpMethod

    Declaration
    public override HttpMethod DefaultHttpMethod { get; }
    Property Value
    Type Description
    HttpMethod
    Overrides
    RequestParameters<MultiGetRequestParameters>.DefaultHttpMethod
    | Edit this page View Source

    Preference

    Specifies the node or shard the operation should be performed on. Random by default.

    Declaration
    public string Preference { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    Realtime

    If true, the request is real-time as opposed to near-real-time.

    Declaration
    public bool? Realtime { get; set; }
    Property Value
    Type Description
    bool?
    | Edit this page View Source

    Refresh

    If true, the request refreshes relevant shards before retrieving documents.

    Declaration
    public Refresh? Refresh { get; set; }
    Property Value
    Type Description
    Refresh?
    | Edit this page View Source

    Routing

    Custom value used to route operations to a specific shard.

    Declaration
    public string[] Routing { get; set; }
    Property Value
    Type Description
    string[]
    | Edit this page View Source

    SourceEnabled

    Set to true or false to return the _source field or not, or a list of fields to return.

    Declaration
    public bool? SourceEnabled { get; set; }
    Property Value
    Type Description
    bool?
    | Edit this page View Source

    SourceExcludes

    A comma-separated list of source fields to exclude from the response. You can also use this parameter to exclude fields from the subset specified in _source_includes query parameter.

    Declaration
    public string[] SourceExcludes { get; set; }
    Property Value
    Type Description
    string[]
    | Edit this page View Source

    SourceIncludes

    A comma-separated list of source fields to include in the response. If this parameter is specified, only these source fields are returned. You can exclude fields from this subset using the _source_excludes query parameter. If the _source parameter is false, this parameter is ignored.

    Declaration
    public string[] SourceIncludes { get; set; }
    Property Value
    Type Description
    string[]
    | Edit this page View Source

    StoredFields

    If true, retrieves the document fields stored in the index rather than the document _source.

    Declaration
    public string[] StoredFields { get; set; }
    Property Value
    Type Description
    string[]
    | Edit this page View Source

    SupportsBody

    Declaration
    public override bool SupportsBody { get; }
    Property Value
    Type Description
    bool
    Overrides
    RequestParameters<MultiGetRequestParameters>.SupportsBody

    Implements

    IRequestParameters

    Extension Methods

    SuffixExtensions.Suffix(object, string)
    • Edit this page
    • View Source
    In this article
    • Properties
      • DefaultHttpMethod
      • Preference
      • Realtime
      • Refresh
      • Routing
      • SourceEnabled
      • SourceExcludes
      • SourceIncludes
      • StoredFields
      • SupportsBody
    • Implements
    • Extension Methods
    Back to top Generated by DocFX