IPropertyInterceptorInterceptGet Method | 
Version 130.1.90
            Called before the get property is invokved. You are now responsible for evaluating
            the property and returning the result.
            
Namespace: CefSharp.ModelBindingAssembly: CefSharp (in CefSharp.dll) Version: 129.0.110.0 (129.0.110.0)
SyntaxObject InterceptGet(
	Func<Object> propertyGetter,
	string propertName
)
Object^ InterceptGet(
	Func<Object^>^ propertyGetter, 
	String^ propertName
)
Parameters
- propertyGetter  FuncObject
 - A Func that represents the property to be called
 - propertName  String
 - Name of the property to be called
 
Return Value
ObjectThe property result
Examplepublic object IPropertyInterceptor.InterceptGet(Func<object> propertyGetter, string propertyName)
{
   object result = propertyGetter();
   Debug.WriteLine("InterceptGet " + propertyName);
   return result;
}
See Also