Click or drag to resize

IJavascriptNameConverter Interface

Version 130.1.90
Implement this interface to have control of how the names are converted when binding/executing javascript.

Namespace: CefSharp.JavascriptBinding
Assembly: CefSharp (in CefSharp.dll) Version: 129.0.110.0 (129.0.110.0)
Syntax
public interface IJavascriptNameConverter

The IJavascriptNameConverter type exposes the following members.

Methods
 NameDescription
Public methodConvertReturnedObjectPropertyAndFieldToNameJavascript This method exists for backwards compatability reasons, historically only the bound methods/fields/properties were converted. Objects returned from a method call were not translated. To preserve this functionality for upgrading users we split this into two methods. Typically thie method would return the same result as ConvertToJavascript(MemberInfo) Issue #2442
Public methodConvertToJavascript Get the javascript name for the property/field/method. Typically this would be based on Name
Top
See Also