Gets a range of values for a given set of keys
Namespace: Couchbase.CoreAssembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 2.0.0.0 (2.0.0.0)
SyntaxIDictionary<string, IOperationResult<T>> Get<T>(
IList<string> keys,
ParallelOptions options,
int rangeSize
)
IDictionary<string, IOperationResult<T>> Get<T>(
IList<string> keys,
ParallelOptions options,
int rangeSize
)
Function Get(Of T) (
keys As IList(Of String),
options As ParallelOptions,
rangeSize As Integer
) As IDictionary(Of String, IOperationResult(Of T))
Function Get(Of T) (
keys As IList(Of String),
options As ParallelOptions,
rangeSize As Integer
) As IDictionary(Of String, IOperationResult(Of T))
generic<typename T>
IDictionary<String^, IOperationResult<T>^>^ Get(
IList<String^>^ keys,
ParallelOptions^ options,
int rangeSize
)
generic<typename T>
IDictionary<String^, IOperationResult<T>^>^ Get(
IList<String^>^ keys,
ParallelOptions^ options,
int rangeSize
)
abstract Get :
keys : IList<string> *
options : ParallelOptions *
rangeSize : int -> IDictionary<string, IOperationResult<'T>>
abstract Get :
keys : IList<string> *
options : ParallelOptions *
rangeSize : int -> IDictionary<string, IOperationResult<'T>>
Parameters
- keys
- Type: System.Collections.Generic.IList<String>
The keys to get
- options
- Type: System.Threading.Tasks.ParallelOptions
A ParallelOptions instance with the options for the given operation.
- rangeSize
- Type: System.Int32
The size of each subrange
Type Parameters- T
- The Type of the values to be returned
Return Value
Type:
IDictionary<String,
IOperationResult<T>>A
Dictionary<TKey, TValue> of the keys sent and the
IOperationResult<T> result.
Remarks
See Also