DynamicObjects don't register with RegisterJsObject with Chromium / CefSharp
问题 I created a dynamic object and try to register it with RegisterJsObject. However, the javascript code on the client side doesn't recongize the register js object and I can't call any of the functions that are par tof the dynamic object. Ex. C# code: dynamic obj = new ExpandoObject(); obj.FullName = new Action(() => { Console.WriteLine("FullName method called"); }); Cef.Initialize(new CefSettings()); ChromiumWebBrowser browser = new ChromiumWebBrowser(""); browser.RegisterJsObject("pesonObj",