IPropertyInterceptorInterceptSet Method | 
Version 130.1.90
            Called before the set property is invokved. You are now responsible for evaluating
            the property.
            
Namespace: CefSharp.ModelBindingAssembly: CefSharp (in CefSharp.dll) Version: 129.0.110.0 (129.0.110.0)
Syntaxvoid InterceptSet(
	Action<Object> propertySetter,
	Object parameter,
	string propertName
)
void InterceptSet(
	Action<Object^>^ propertySetter, 
	Object^ parameter, 
	String^ propertName
)
Parameters
- propertySetter  ActionObject
 - A Func that represents the property to be called
 - parameter  Object
 - paramater to be set to property
 - propertName  String
 - Name of the property to be called
 
Examplepublic object IPropertyInterceptor.InterceptSet(Action<object> propertySetter, object parameter, string propertName)
{
   Debug.WriteLine("InterceptSet " + propertName);
   propertySetter(parameter);
}
See Also