Click or drag to resize

CefSharp.ModelBinding Namespace

Version 102.0.100
Model binding - used by Javascript Binding
Classes
  ClassDescription
Public classBindingMemberInfo
Represents a bindable member of a type, which can be a property or a field.
Public classDefaultBinder
Default binder - used as a fallback when a specific modelbinder is not available.
Interfaces
  InterfaceDescription
Public interfaceIAsyncMethodInterceptor
Provides the capability intercept async/sync Net method calls made from javascript as part of the JavascriptBinding (JSB) implementation. One example use case is logging method calls. Extends IMethodInterceptor to add async support.
Public interfaceIBinder
Converts input params into complex .Net types (can also be used for type conversion). This feature is similar in concept to ASP.NET MVC Model Binding. Objects passed from javascript are represented as IDictionaryTKey, TValue and arrays/lists as IListT See DefaultBinder for the default implementation.
Public interfaceIMethodInterceptor
Provides the capability intercept Net method calls made from javascript as part of the JavascriptBinding (JSB) implementation. One example use case is logging method calls.
Public interfaceIPropertyInterceptor
Provides the capability intercepting get/set property calls made from javascript as part of the JavascriptBinding (JSB) implementation.