Click or drag to resize

CefSharp.ModelBinding Namespace

Version 83.4.2
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 classCamelCaseJavascriptNameConverter
Public classDefaultBinder
Default binder - used as a fallback when a specific modelbinder is not available.
Interfaces
  InterfaceDescription
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 interfaceIJavascriptNameConverter
Implement this interface to have control of how the names are converted when binding/executing javascript.
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.