Click or drag to resize

IMapInterceptorInterceptGet Method

Intercept get operation before returning value.

Namespace:  Hazelcast.Map
Assembly:  Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.3
Syntax
Object InterceptGet(
	Object value
)

Parameters

value
Type: SystemObject
the original value to be returned as the result of get(..) operation

Return Value

Type: Object
the new value that will be returned by get(..) operation
Remarks
Intercept get operation before returning value. Return another object to change the return value of get(..) Returning null will cause the get(..) operation return original value, namely return null if you do not want to change anything.

See Also