Click or drag to resize

IJavascriptNameConverter Interface

Version 86.0.240
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: 86.0.240.0 (86.0.240.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(string)] Issue #2442
Public methodConvertToJavascript
Get the javascript name for the property/field/method. Typically this would be based on Name
Top
See Also