IViewResult T  InterfaceCouchbase .NET SDK 2.0
Represents the results of a View query.

Namespace: Couchbase.Views
Assembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 2.0.2.0 (2.0.2.0)
Syntax
public interface IViewResult<T> : IResult 
Type Parameters
T
The Type parameter to be used for deserialization by the IDataMapper implementation.

The IViewResult T  type exposes the following members.

Methods
  NameDescription
Public methodCannotRetry
Returns false if the error that caused the View request to fail can result in a retry request.
Top
Properties
  NameDescription
Public propertyError
A View engine specific error message if one occured.
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 propertyRows
Public propertyStatusCode
The HTTP Status Code for the request
Public propertySuccess
Returns true if the operation was succesful.
(Inherited from IResult.)
Public propertyTotalRows
The total number of rows returned by the View request.
Public propertyValues
Top
See Also