Class SingleQueryTransactionResult<T>
The transaction result from a single query transaction.
Inherited Members
Namespace: Couchbase.Integrated.Transactions
Assembly: Couchbase.NetClient.dll
Syntax
[InterfaceStability(Level.Volatile)]
public class SingleQueryTransactionResult<T>
Type Parameters
Name | Description |
---|---|
T |
Properties
| Edit this page View SourceLogs
Gets the logs from the transaction.
Declaration
public IEnumerable<string> Logs { get; }
Property Value
Type | Description |
---|---|
IEnumerable<string> |
QueryResult
Gets the query result, if any.
Declaration
public IQueryResult<T>? QueryResult { get; }
Property Value
Type | Description |
---|---|
IQueryResult<T> |
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 |