IMapTKey, TValueGetAll Method Hazelcast .Net Client Class Library
Returns the entries for the given keys.

Namespace: Hazelcast.Core
Assembly: Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.8.2
Syntax

IDictionary<TKey, TValue> GetAll(
	ICollection<TKey> keys
)

Parameters

keys
Type: System.Collections.GenericICollectionTKey
keys to get

Return Value

Type: IDictionaryTKey, TValue
map of entries
Remarks

Returns the entries for the given keys.

Warning:

The returned map is NOT backed by the original map, so changes to the original map are NOT reflected in the returned map, and vice-versa.

Warning-2:

This method uses GetHashCode and Equals of binary form of the key, not the actual implementations of GetHashCode and Equals defined in key's class.
See Also

Reference