IMapTKey, TValueAddEntryListener Method (MapListener, TKey, Boolean)Hazelcast .Net Client Class Library
Adds a MapListener for the specified key, you should implement a corresponding MapListener sub-interface for that event.

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

string AddEntryListener(
	MapListener listener,
	TKey key,
	bool includeValue
)

Parameters

listener
Type: Hazelcast.CoreMapListener
MapListener for this map
key
Type: TKey
key to listen
includeValue
Type: SystemBoolean
true if EntryEvent should contain the value.

Return Value

Type: String
a registration Id which is used as a key to remove the listener.
Exceptions

ExceptionCondition
ArgumentNullExceptionthe specified listener or the key is null.
Remarks

Warning:

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