  | IMapInterceptorInterceptGet Method  | 
 Intercept get operation before returning value.
 
    Namespace: 
   Hazelcast.Map
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.2
SyntaxObject InterceptGet(
	Object value
)
Function InterceptGet ( 
	value As Object
) As Object
Object^ InterceptGet(
	Object^ value
)
abstract InterceptGet : 
        value : Object -> Object 
Parameters
- value
 - Type: SystemObject
the original value to be returned as the result of get(..) operation 
Return Value
Type: 
Objectthe 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