cefsharp设置cookie,CefSharp如何存储Cookie

cefsharp设置cookie,CefSharp如何存储CookieIcan’tgetcookiestosaveinCefSharp.HereiswhatItried:CefSettingssettings=newCefSettings();stringpath=Environment.GetFolderPath(Environment.SpecialFolder.Desktop);Cef.Initialize(newCefS…

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺

cefsharp设置cookie,CefSharp如何存储Cookie

I can’t get cookies to save in CefSharp.

Here is what I tried:

CefSettings settings = new CefSettings();

string path = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);

Cef.Initialize(new CefSettings());

settings.RemoteDebuggingPort = 8088;

settings.CachePath = path;

I’m using the desktop just to test it but I tried others as well.

This is the solution others got but I can’t get it to work:

Set CefSettings.CachePath directory. Settings are passed to Cef.Initialize(). The answer was from here.

After the comments I have tried this:

In the Initialize part I put this

CefSettings settings = new CefSettings();

string path = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);

settings.RemoteDebuggingPort = 8088;

settings.CachePath = path;

Cef.Initialize(new CefSettings());

and

private void Form1_Load(object sender, EventArgs e)

{

SearchBox.Text = “http://www.google.com/”;

chrome = new ChromiumWebBrowser(SearchBox.Text);

this.MainBrowser.Controls.Add(chrome);

chrome.Dock = DockStyle.Fill;

chrome.AddressChanged += Chrome_AddressChanged;

解决方案private void InitializeChromium()

{

CefSettings settings = new CefSettings();

string path = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);

settings.RemoteDebuggingPort = 8080;

settings.CachePath = path;

//Initialize Cef with the provided settings

Cef.Initialize(settings);

//Create a browser component

chrome = new ChromiumWebBrowser(SearchBox.Text);

//Add he browser to the form

this.MainBrowser.Controls.Add(chrome);

//Make the browser fill the form

chrome.Dock = DockStyle.Fill;

}

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/191986.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)
blank

相关推荐

  • CreateEvent方法详解

    CreateEvent方法详解HANDLECreateEvent(  LPSECURITY_ATTRIBUTESlpEventAttributes,//安全属性  BOOLbManualReset,//复位方式  BOOLbInitialState,//初始状态  LPCTSTRlpName//对象名称);调用示例:hEvent=CreateEvent(NULL,TRUE,…

  • jar war ear_什么时候用jar包与war包

    jar war ear_什么时候用jar包与war包war是web的一个模块,其中需要包括WEB-INF,可以直接运行。而jar一般只是包括一些class文件,在声明了Main_class之后是可以用java命令运行的。它们都是压缩的包,拿Tomcat来说,将war文件包放置它的\webapps\目录下,启动Tomcat,这个包可以自动进行解压,也就是你的web目录,相当于发布。  war包:一般是做好一个web应用后,通常是网站,打成包部署到容…

  • Cinemachine初体验

    Cinemachine初体验一、安装可以直接从packagemanager里面安装(踩过的坑:导入samples时可能会出现sample和当前使用的unity版本不兼容的情况,更换版本即可)二、cinemachine使用说明场景中需要已存在一个unitycamera,然后在该相机上挂载CinemachineBrain组件(ps:如果不是在timeline中使用虚拟相机的话,这两个属性会决定多个虚拟相机之间切换的方式)或者直接使用cinemachine新建相机,这样会自动在原有的unitycamera上挂载Cinema

  • delphi打包python_Python for delphi教程

    delphi打包python_Python for delphi教程Related’PythonforDelphi’Linksonthissite:tutorial-Andy’sPythonDelphiTutorial-Gettingstartedwiththebasics.AlsousethesetechniquesifyouareusingDelphi5orbelow,andPyth…

  • 【显卡】rx470显卡挖矿算力,rx470挖矿算力,rx470显卡挖矿超频设置

    【显卡】rx470显卡挖矿算力,rx470挖矿算力,rx470显卡挖矿超频设置已下是RX470显卡挖矿算力参数RX470,8卡矿机,算力是216m,功耗1110w,日产量ETH单位0.00636909

  • ajaxpro json 使用「建议收藏」

    ajaxpro json 使用「建议收藏」(一)AJAXPro之旅—神奇的小魔盒-站在巨人的肩膀上做自己的事情-博客园 -[Translatethispage]2007年9月10日…JSON.2.dll,AjaxPro.JSON.dll,web.config5个文件.其中.2结尾的是应用在.Net2.0框架下的类库.(个人使用的是2.0的,以下的教程也是应用在2.0下的)…www.cnblogs.c…

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号