Click or drag to resize
IDocumentResultT Interface
The return type for "document" centric operation requests.

Namespace: Couchbase
Assembly: Couchbase (in Couchbase.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public interface IDocumentResult<T> : IResult

Type Parameters

T
The type the value of the document will be.

The IDocumentResultT type exposes the following members.

Properties
  NameDescription
Public propertyDocument
The Document object
Public propertyException
If Success is false and an exception has been caught internally, this field will contain the exception.
(Inherited from IResult.)
Public propertyMessage
If the operation wasn't succesful, a message indicating why it was not succesful.
(Inherited from IResult.)
Public propertyStatus
The response status returned by the server when fulfilling the request.
Public propertySuccess
Returns true if the operation was succesful.
(Inherited from IResult.)
Public propertyValue
The actual value stored within Couchbase
Top
See Also