Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.1.0)
E69639-01
Get all the specified keys, if they are in the cache.

Namespace: Tangosol.Net.Cache.Support
Assembly: Coherence (in Coherence.dll) Version: 12.2.1.1000 (12.2.1.1000)

Syntax

C#
public virtual IDictionary GetAll(
	ICollection keys
)

Parameters

keys
Type: System.Collections..::..ICollection
A collection of keys that may be in the named cache.

Return Value

An IDictionary of keys to values for the specified keys passed in keys.

Implements

ICache..::..GetAll(ICollection)

Remarks

For each key that is in the cache, that key and its corresponding value will be placed in the dictionary that is returned by this method. The absence of a key in the returned dictionary indicates that it was not in the cache, which may imply (for caches that can load behind the scenes) that the requested data could not be loaded.

See Also