Click or drag to resize
RiakResultTResult Class
Represents the collection of result information for a Riak operation that returns a TResult-typed value.
Inheritance Hierarchy
SystemObject
  RiakClientRiakResult
    RiakClientRiakResultTResult

Namespace:  RiakClient
Assembly:  RiakClient (in RiakClient.dll) Version: f9bb17a3f8ff6940b88010a52f202e3d55fe25c5
Syntax
public class RiakResult<TResult> : RiakResult

Type Parameters

TResult
The type of the Riak operation's return value.

The RiakResultTResult type exposes the following members.

Constructors
  NameDescription
Public methodRiakResultTResult(RiakResult)
Initializes a new instance of the RiakResultTResult class
Public methodRiakResultTResult(Exception, ResultCode, Boolean)
Initializes a new instance of the RiakResultTResult class
Public methodRiakResultTResult(TResult, Boolean, String, ResultCode, Boolean)
Initializes a new instance of the RiakResultTResult class
Top
Properties
  NameDescription
Public propertyContinuation
An opaque continuation returned if there are still additional results to be returned in a paginated query. This value should be supplied to the next query issued to Riak.
Public propertyDone
Is the current paginated query / streaming query done?
Public propertyErrorMessage
The error message returned from the Riak operation, in the case that the operation was not a success.
(Inherited from RiakResult.)
Public propertyException
The Exception returned from the Riak operation.
(Inherited from RiakResult.)
Public propertyIsSuccess
true if the Riak operation was a success, otherwise, false.
(Inherited from RiakResult.)
Public propertyResultCode
The ResultCode returned from the operation.
(Inherited from RiakResult.)
Public propertyValue
The return value from the Riak operation.
Top
Methods
  NameDescription
Public methodEquals(Object)
Determines whether the specified object is equal to the current object.
(Overrides ObjectEquals(Object).)
Public methodEquals(RiakResultTResult)
Determines whether the specified object is equal to the current object.
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Returns a hash code for the current object. Uses a combination of the public properties to calculate the hash.
(Overrides ObjectGetHashCode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also