Couchbase .NET SDK __CB_SDK_VERSION__

Show / Hide Table of Contents

Class SingleQueryTransactionResult<T>

The transaction result from a single query transaction.

Inheritance
object
SingleQueryTransactionResult<T>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Couchbase.Client.Transactions
Assembly: Couchbase.NetClient.dll
Syntax
public class SingleQueryTransactionResult<T>
Type Parameters
Name Description
T

Constructors

View Source

SingleQueryTransactionResult()

Declaration
public SingleQueryTransactionResult()

Properties

View Source

Logs

Gets the logs from the transaction.

Declaration
public IEnumerable<string> Logs { get; }
Property Value
Type Description
IEnumerable<string>
View Source

QueryResult

Gets the query result, if any.

Declaration
public IQueryResult<T>? QueryResult { get; }
Property Value
Type Description
IQueryResult<T>
View Source

UnstagingComplete

Gets a value indicating whether the transaction completed to the point of unstaging its results, meaning it finished successfully.

Declaration
public bool UnstagingComplete { get; }
Property Value
Type Description
bool
  • View Source
In this article
Back to top Copyright © 2020 Couchbase, Inc. All rights reserved.