Couchbase .NET SDK | 3.7.2
Search Results for

    Show / Hide Table of Contents

    Class QueryMetaData

    Inheritance
    object
    QueryMetaData
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Couchbase.Query
    Assembly: Couchbase.NetClient.dll
    Syntax
    public class QueryMetaData

    Properties

    | Edit this page View Source

    ClientContextId

    Gets the clientContextID of the request, if one was supplied. Used for debugging.

    Declaration
    public string ClientContextId { get; set; }
    Property Value
    Type Description
    string

    The client context identifier.

    | Edit this page View Source

    LastDispatchedToNode

    Gets the base URI of last node the query was sent to.

    Declaration
    [InterfaceStability(Level.Volatile)]
    public Uri LastDispatchedToNode { get; set; }
    Property Value
    Type Description
    Uri
    | Edit this page View Source

    Metrics

    Gets an object containing metrics about the request.

    Declaration
    public QueryMetrics Metrics { get; set; }
    Property Value
    Type Description
    QueryMetrics

    The metrics.

    | Edit this page View Source

    Profile

    Gets the request N1QL query profile.

    Declaration
    public dynamic Profile { get; set; }
    Property Value
    Type Description
    dynamic

    The profile.

    | Edit this page View Source

    RequestId

    Gets A unique identifier for the response.

    Declaration
    public string RequestId { get; set; }
    Property Value
    Type Description
    string

    The unique identifier for the response.

    | Edit this page View Source

    Signature

    Gets the schema of the results. Present only when the query completes successfully.

    Declaration
    public dynamic Signature { get; set; }
    Property Value
    Type Description
    dynamic

    The signature of the schema of the request.

    | Edit this page View Source

    Status

    Gets the status of the request; possible values are: success, running, errors, completed, stopped, timeout, fatal.

    Declaration
    public QueryStatus Status { get; set; }
    Property Value
    Type Description
    QueryStatus

    The status of the request.

    | Edit this page View Source

    Warnings

    Gets a list of 0 or more warning objects; if a warning occurred during processing of the request, it will be represented by a warning object in this list.

    Declaration
    public List<QueryWarning> Warnings { get; set; }
    Property Value
    Type Description
    List<QueryWarning>

    The warnings.

    • Edit this page
    • View Source
    In this article
    Back to top © 2025 Couchbase, Inc.