Click or drag to resize

IMethodInterceptorIntercept Method

Version 75.1.140
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: 75.1.140.0 (75.1.140.0)
Syntax
Object Intercept(
	Func<Object> method,
	string methodName
)

Parameters

method
Type: SystemFuncObject
A Func that represents the method to be called
methodName
Type: SystemString
Name of the method to be called

Return Value

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