Retrieves the object from the cache for the given keys as key value pairs

Namespace: Alachisoft.NCache.Web.Caching
Assembly: Alachisoft.NCache.Web (in Alachisoft.NCache.Web.dll) Version: 4.1.0.0 (4.1.0.0)

Syntax

C#
public virtual IDictionary GetBulk(
	string[] keys,
	string providerName,
	DSReadOption dsReadOption
)
Visual Basic
Public Overridable Function GetBulk ( _
	keys As String(), _
	providerName As String, _
	dsReadOption As DSReadOption _
) As IDictionary
Visual C++
public:
virtual IDictionary^ GetBulk(
	array<String^>^ keys, 
	String^ providerName, 
	DSReadOption dsReadOption
)

Parameters

keys
Type: array<System..::..String>[]()[][]
The keys against which items are to be fetched.
providerName
Type: System..::..String
The datasource provider name for read-through operation
dsReadOption
Type: Alachisoft.NCache.Web.Caching..::..DSReadOption
Options regarding reading from data source

Return Value

The retrieved cache items.

See Also