| IPropertyInterceptorInterceptSet Method  | 
Version 118.6.80 
            Called before the set property is invokved. You are now responsible for evaluating
            the property.
            
 
    Namespace: 
   CefSharp.ModelBinding
    Assembly:
   CefSharp (in CefSharp.dll) Version: 118.6.80.0 (118.6.80.0)
 Syntax
Syntaxvoid InterceptSet(
	Action<Object> propertySetter,
	Object parameter,
	string propertName
)
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
Examplespublic object IPropertyInterceptor.InterceptSet(Action<object> propertySetter, object parameter, string propertName)
{
   Debug.WriteLine("InterceptSet " + propertName);
   propertySetter(parameter);
} See Also
See Also