LocalCachePeekAll Method |
Namespace: Tangosol.Net.Cache
public virtual IDictionary PeekAll( ICollection keys )
The result of this method is defined to be semantically the same as the following implementation, without regards to threading issues:
IDictionary dict = new Hashtable();
foreach (object key in keys)
{
Object value = Peek(key);
if (value != null || Contains(key))
{
dict.Add(key, value);
}
}
return dict;