Click or drag to resize

ISimpleMethodInterceptorOnEnter Method

Invoked if an intercepted method has been called

Namespace:  Cauldron.Interception
Assembly:  Cauldron.Interception (in Cauldron.Interception.dll) Version: 3.2.0.1 (3.2.0.1)
Syntax
C#
void OnEnter(
	Type declaringType,
	Object instance,
	MethodBase methodbase,
	Object[] values
)

Parameters

declaringType
Type: SystemType
The type declaring the intercepted method
instance
Type: SystemObject
The instance of the class where the method is residing. will be null if the method is static
methodbase
Type: System.ReflectionMethodBase
Contains information about the method
values
Type: SystemObject
The passed arguments of the method.
See Also