IOperationResult<T> InterfaceCouchbase .NET SDK 2.3.3
The primary return type for binary Memcached operations which return a value

Namespace: Couchbase
Assembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 0.0.0.0 (0.0.0.0)
Syntax
public interface IOperationResult<out T> : IOperationResult, 
	IResult 
Type Parameters
T
The value returned by the operation.

The IOperationResult<T> type exposes the following members.

Methods
  NameDescription
Public methodIsNmv
Checks if the server responded with a Not My Vbucket.
(Inherited from IOperationResult.)
Public methodShouldRetry
If the response indicates the request is retryable, returns true.
(Inherited from IResult.)
Top
Properties
  NameDescription
Public propertyCas
The 'Check and Set' or 'CAS' value for enforcing optimistic concurrency.
(Inherited from IOperationResult.)
Public propertyDurability
The level of durability that the operation achieved
(Inherited from IOperationResult.)
Public propertyException
If Success is false and an exception has been caught internally, this field will contain the exception.
(Inherited from IResult.)
Public propertyId
Gets the id or key for the document.
(Inherited from IOperationResult.)
Public propertyMessage
If the operation wasn't succesful, a message indicating why it was not succesful.
(Inherited from IResult.)
Public propertyStatus
The server's response status for the operation.
(Inherited from IOperationResult.)
Public propertySuccess
Returns true if the operation was succesful.
(Inherited from IResult.)
Public propertyToken
Gets the mutation token for the operation if enhanced durability is enabled.
(Inherited from IOperationResult.)
Public propertyValue
The value returned by the operation.
Top
See Also