  | IReplicatedMapTKey, TValueEntrySet Method  | 
 
            Returns a ISetT clone of the mappings contained in this map.
            
 
    Namespace: 
   Hazelcast.Core
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.2
SyntaxISet<KeyValuePair<TKey, TValue>> EntrySet()
Function EntrySet As ISet(Of KeyValuePair(Of TKey, TValue))
ISet<KeyValuePair<TKey, TValue>>^ EntrySet()
abstract EntrySet : unit -> ISet<KeyValuePair<'TKey, 'TValue>> 
Return Value
Type: 
ISetKeyValuePairTKey, 
TValuea set clone of the keys mappings in this map
Remarks
                Returns a
                ISetT
                clone of the mappings contained in this map.
                The set is NOT backed by the map,
                so changes to the map are NOT reflected in the set, and vice-versa.
            
See Also