Click or drag to resize

IPropertyInterceptorInterceptSet Method

Version 102.0.100
Called before the set property is invokved. You are now responsible for evaluating the property.

Namespace:  CefSharp.ModelBinding
Assembly:  CefSharp (in CefSharp.dll) Version: 102.0.100.0 (102.0.100.0)
Syntax
void InterceptSet(
	Action<Object> propertySetter,
	Object parameter,
	string propertName
)

Parameters

propertySetter
Type: SystemActionObject
A Func that represents the property to be called
parameter
Type: SystemObject
paramater to be set to property
propertName
Type: SystemString
Name of the property to be called
Examples
public object IPropertyInterceptor.InterceptSet(Action<object> propertySetter, object parameter, string propertName)
{
   Debug.WriteLine("InterceptSet " + propertName);
   propertySetter(parameter);
}
See Also