  | IMapTKey, TValueExecuteOnKey Method  | 
 Applies the user defined EntryProcessor to the entry mapped by the key.
 
    Namespace: 
   Hazelcast.Core
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.11
SyntaxObject ExecuteOnKey(
	TKey key,
	IEntryProcessor entryProcessor
)
Function ExecuteOnKey ( 
	key As TKey,
	entryProcessor As IEntryProcessor
) As Object
Object^ ExecuteOnKey(
	TKey key, 
	IEntryProcessor^ entryProcessor
)
abstract ExecuteOnKey : 
        key : 'TKey * 
        entryProcessor : IEntryProcessor -> Object 
Parameters
- key
 - Type: TKey
key - entryProcessor
 - Type: Hazelcast.MapIEntryProcessor
                The user defined IEntryProcessor. This object must have a hazelcast serializable
                EntryProcessor counterpart registered on server side with the actual
                org.hazelcast.map.EntryProcessor implementation.
             
Return Value
Type: 
Objectresult of entry process
See Also