You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Six years ago, I used CefSharp v84.4.20 which allowed the network calls to be executed in the main process.
Today, I tried the v146.0.100 and this feature doesn't seem to work anymore... Is it correct or is there a way to enable it again ?
My old code to initialize CefSharp :
var settings = new CefSettings
{
// Set BrowserSubProcessPath based on app bitness at runtime
BrowserSubprocessPath = Path.Combine(AppDomain.CurrentDomain.SetupInformation.ApplicationBase, "CefSharp.BrowserSubprocess.exe"),
CachePath = _CEFSharpFolderPath,
LogFile = _CEFSharpFolderPath + "debug.log"
};
settings.CefCommandLineArgs.Add("enable-features", "CastMediaRouteProvider,NetworkServiceInProcess");
// Make sure you set performDependencyCheck false
Cef.Initialize(settings, performDependencyCheck: false, browserProcessHandler: null);
For what I remember, the feature "NetworkServiceInProcess" did the job but I'm not entirely sure...
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Six years ago, I used CefSharp v84.4.20 which allowed the network calls to be executed in the main process.
Today, I tried the v146.0.100 and this feature doesn't seem to work anymore... Is it correct or is there a way to enable it again ?
My old code to initialize CefSharp :
For what I remember, the feature "NetworkServiceInProcess" did the job but I'm not entirely sure...
All reactions