  | IMapTKey, TValueGetEntryView Method  | 
 Returns the EntryView for the specified key.
 
    Namespace: 
   Hazelcast.Core
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.2
SyntaxIEntryView<TKey, TValue> GetEntryView(
	TKey key
)
Function GetEntryView ( 
	key As TKey
) As IEntryView(Of TKey, TValue)
IEntryView<TKey, TValue>^ GetEntryView(
	TKey key
)
abstract GetEntryView : 
        key : 'TKey -> IEntryView<'TKey, 'TValue> 
Parameters
- key
 - Type: TKey
key of the entry 
Return Value
Type: 
IEntryViewTKey, 
TValueEntryView of the specified key
Remarks
                Returns the 
EntryView for the specified key.
                
Warning:
                    This method returns a clone of original mapping, modifying the returned value does not change
                    the actual value in the map. One should put modified value back to make changes visible to all nodes.
                
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