| IMapTKey, TValueGetAll Method |
Returns the entries for the given keys.
Namespace:
Hazelcast.Core
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.3
Syntax IDictionary<TKey, TValue> GetAll(
ICollection<TKey> keys
)
Function GetAll (
keys As ICollection(Of TKey)
) As IDictionary(Of TKey, TValue)
IDictionary<TKey, TValue>^ GetAll(
ICollection<TKey>^ keys
)
abstract GetAll :
keys : ICollection<'TKey> -> IDictionary<'TKey, 'TValue>
Parameters
- keys
- Type: System.Collections.GenericICollectionTKey
keys to get
Return Value
Type:
IDictionaryTKey,
TValuemap 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