Replies: 1 comment
-
What did the log file say? Also you can get the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I had been used the legay version of cefsharp 120.x.xx in that cef redist nuget pack is used at that time the below code is working fine that I am trying to load a url in the ChromiumWebBrowser
using CefSharp;
using CefSharp.WinForms;
var settings = new CefSettings
{
BrowserSubprocessPath = @"C:\Users\SSIN047\source\repos\WindowsFormsApp1\WindowsFormsApp1\bin\x64\Debug\CefSharp.BrowserSubprocess.exe",
CachePath = Path.Combine(appDataPath, "BrowserCache"),
LogFile = Path.Combine(appDataPath, "Debug.log"),
LogSeverity = LogSeverity.Verbose
};
after the update of the version to 138.x.xx, the code is not working, and it is throwing an error
System.InvalidOperationException: 'Cef.IsInitialized was false!.Check the log file for errors!. See https://github.com/cefsharp/CefSharp/wiki/Trouble-Shooting#log-file for details.'
Even if I followed the same link mentioned, it is not working; the IsInitialized is getting false after the cef.Initialize
Beta Was this translation helpful? Give feedback.
All reactions