cefsharp跨域

//添加命令行参数--disable-web-security
//仅可初始化一次(在程序启动时初始化)
 var settings = new CefSettings();

            // Set BrowserSubProcessPath based on app bitness at runtime
            settings.BrowserSubprocessPath = Path.Combine(AppDomain.CurrentDomain.SetupInformation.ApplicationBase,
                                                   Environment.Is64BitProcess ? "runtimes\win-x64\native" : "runtimes\win-x86\native",
                                                   "CefSharp.BrowserSubprocess.exe");



            settings.MultiThreadedMessageLoop = true;
            settings.CefCommandLineArgs.Add("--disable-web-security", "");


            // Make sure you set performDependencyCheck false
            Cef.Initialize(settings, performDependencyCheck: false, browserProcessHandler: null);
留待后查,同时方便他人
联系我:renhanlinbsl@163.com
原文地址:https://www.cnblogs.com/ives/p/15074463.html