I am using the latest version of CefSharp and I need to display Flash. When using Chrome, the page displays correctly. However, using CefSharp is not the case.
So far I have tried:
var browser = new ChromiumWebBrowser(URL) { BrowserSettings = new BrowserSettings() { Java = CefState.Enabled, Plugins = CefState.Enabled, }, Dock = DockStyle.Fill };
When I download about:plugins , I get:
CEF 3.2357.1287.g861c26e
Chromium 43.0.2357.130
Windows OS
WebKit 537.36
JavaScript 4.3.61.30
Flash
Mozilla / 5.0 user agent (Windows NT 6.2, Win64; x64) AppleWebKit / 537.36 (KHTML, e.g. Gecko) Chrome / 43.0.2357.130 Safari / 537.36
How to enable Flash in CefSharp?
source share