Class QueryErrorContext
Inheritance
QueryErrorContext
Assembly: Couchbase.NetClient.dll
Syntax
[InterfaceStability(Level.Uncommitted)]
public class QueryErrorContext : IQueryErrorContext, IKeyValueErrorContext, IErrorContext
Properties
|
Edit this page
View Source
ClientContextId
Declaration
[JsonInclude]
public string? ClientContextId { get; set; }
Property Value
|
Edit this page
View Source
Errors
Declaration
[JsonInclude]
public List<Error>? Errors { get; set; }
Property Value
|
Edit this page
View Source
HttpStatus
Declaration
[JsonInclude]
[JsonConverter(typeof(JsonStringEnumConverter<HttpStatusCode>))]
public HttpStatusCode HttpStatus { get; set; }
Property Value
|
Edit this page
View Source
Message
Declaration
[JsonInclude]
public string? Message { get; set; }
Property Value
|
Edit this page
View Source
Parameters
Declaration
[JsonInclude]
public string? Parameters { get; set; }
Property Value
|
Edit this page
View Source
QueryStatus
Declaration
[JsonInclude]
[JsonConverter(typeof(CamelCaseStringEnumConverter<QueryStatus>))]
public QueryStatus QueryStatus { get; set; }
Property Value
|
Edit this page
View Source
RetryReasons
Declaration
public List<RetryReason>? RetryReasons { get; }
Property Value
|
Edit this page
View Source
Statement
Declaration
[JsonInclude]
public string? Statement { get; set; }
Property Value
Implements