DataCacheBulkGet Method (IEnumerableString)Windows Server AppFabric Caching Compatibility Library
Gets all of the objects associated with the specified keys across all system regions. This method does not search user-defined regions.

Namespace: Soss.Compat.WSAF
Assembly: soss_wsaf_compat (in soss_wsaf_compat.dll) Version: 1.1.0.100 (1.1.0.100)
Syntax

public IEnumerable<KeyValuePair<string, Object>> BulkGet(
	IEnumerable<string> keys
)

Parameters

keys
Type: System.Collections.GenericIEnumerableString
List of keys for the objects to retrieve, cannot be null.

Return Value

Type: IEnumerableKeyValuePairString, Object
A list of key/values pairs that match the input keys.
Remarks

If the keys parameter is null, the BulkGet(IEnumerableString) method will throw a ArgumentNullException for the null parameter.

If there is no object found for some key, the object slot returned by the enumerator for this key will be null. For example, the key/value pair returned would be {key,null}.

See Also

Reference