Click or drag to resize

IMethodInterceptor.Intercept Method

Version 97.1.60
Called before the method is invokved. You are now responsible for evaluating the function and returning the result.

Namespace:  CefSharp.ModelBinding
Assembly:  CefSharp (in CefSharp.dll) Version: 97.1.60.0 (97.1.60.0)
Syntax
Object Intercept(
	Func<Object[], Object> method,
	Object[] parameters,
	string methodName
)

Parameters

method
Type: System.Func<Object[], Object>
A Func that represents the method to be called
parameters
Type:System.Object[]
paramaters to be passed to method
methodName
Type: System.String
Name of the method to be called

Return Value

Type: Object
The method result
Examples
object IMethodInterceptor.Intercept(Func<object[], object> method, object[] parameters, string methodName) { object result = method(parameters); Debug.WriteLine("Called " + methodName); return result; }
See Also