Click or drag to resize
RiakSearchResult Constructor
Initializes a new instance of the RiakSearchResult class.

Namespace:  RiakClient.Models.Search
Assembly:  RiakClient (in RiakClient.dll) Version: f9bb17a3f8ff6940b88010a52f202e3d55fe25c5
Syntax
public RiakSearchResult(
	float maxScore,
	long numFound,
	IEnumerable<RiakSearchResultDocument> documents
)

Parameters

maxScore
Type: SystemSingle
The maximum score out of all the documents found.
numFound
Type: SystemInt64
The total number of documents found.
documents
Type: System.Collections.GenericIEnumerableRiakSearchResultDocument
The documents found.
Exceptions
ExceptionCondition
ArgumentNullExceptionThe value of 'documents' cannot be null.
See Also