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