Click or drag to resize
IRiakAsyncClientGetSecondaryIndex Method (RiakIndexId, String, RiakIndexGetOptions)
Query a secondary index for a specific string value.

Namespace:  RiakClient
Assembly:  RiakClient (in RiakClient.dll) Version: f9bb17a3f8ff6940b88010a52f202e3d55fe25c5
Syntax
Task<RiakResult<RiakIndexResult>> GetSecondaryIndex(
	RiakIndexId index,
	string value,
	RiakIndexGetOptions options = null
)

Parameters

index
Type: RiakClient.ModelsRiakIndexId
The RiakIndexId identifying the index to query.
value
Type: SystemString
The string value to query for.
options (Optional)
Type: RiakClient.ModelsRiakIndexGetOptions
The RiakIndexGetOptions responsible for configuring the semantics of this single index request.

Return Value

Type: TaskRiakResultRiakIndexResult
A TaskTResult, that will contain a RiakResultTResult of RiakIndexResult.
See Also