随着最近Chromium 框架和 CEF 的重大变化ICookieManager.SetStoragePath()
,该方法已被删除。我现在没有找到正确设置此路径的方法。我需要为所有 cookie 设置一次,之前我使用的是以下启动代码:
var settings = new CefSettings();
settings.CefCommandLineArgs.Add("disable-gpu", "1");
Cef.Initialize(settings);
Cef.GetGlobalCookieManager().SetStoragePath(this.pipeName, true);
现在设置这条路径的预期方式是什么?