Couchbase .NET SDK __CB_SDK_VERSION__

Show / Hide Table of Contents

Class AnalyticsMetaData

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

Constructors

View Source

AnalyticsMetaData()

Declaration
public AnalyticsMetaData()

Properties

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.

View Source

Metrics

Gets an object containing metrics about the request.

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

The metrics.

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.

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.

View Source

Status

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

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

The status of the request.

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<AnalyticsWarning> Warnings { get; set; }
Property Value
Type Description
List<AnalyticsWarning>

The warnings.

  • View Source
In this article
Back to top Copyright © 2020 Couchbase, Inc. All rights reserved.