| WebBrowserExtensionsEncodeScriptParam Property | 
Version 130.1.90
            Function used to encode the params passed to [!:ExecuteScriptAsync(IWebBrowser, string, object[])],
            [!:EvaluateScriptAsync(IWebBrowser, string, object[])] and
            [!:EvaluateScriptAsync(IWebBrowser, TimeSpan?, string, object[])]
            Provide your own custom function to perform custom encoding. You can use your choice of JSON encoder here if you should so
            choose.
            
Namespace: CefSharpAssembly: CefSharp (in CefSharp.dll) Version: 129.0.110.0 (129.0.110.0)
 Syntax
Syntaxpublic static Func<string, string> EncodeScriptParam { get; set; }public:
static property Func<String^, String^>^ EncodeScriptParam {
	Func<String^, String^>^ get ();
	void set (Func<String^, String^>^ value);
}Property Value
FuncString, 
String
            A function delegate that yields a string.
            
 See Also
See Also