Click or drag to resize
IResultT Interface
Default interface for all operation return types.

Namespace:  Couchbase
Assembly:  Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 2.5.7-alpha1
Syntax
public interface IResult<T> : IResult

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "T:Couchbase.IResult`1"]

The IResultT type exposes the following members.

Properties
  NameDescription
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 propertySuccess
Returns true if the operation was succesful.
(Inherited from IResult.)
Public propertyValue
The value returned by the operation
Top
Methods
  NameDescription
Public methodShouldRetry
If the response indicates the request is retryable, returns true.
(Inherited from IResult.)
Top
See Also