[DllImport("wininet.dll", CharSet = CharSet.Auto, SetLastError = true)] public static extern bool InternetSetCookie(string lpszUrlName, string lbszCookieName, string lpszCookieData);
使用api设置就能实现,在需要设置webbrowser的cookie,访问网站。
本文共 282 字,大约阅读时间需要 1 分钟。
[DllImport("wininet.dll", CharSet = CharSet.Auto, SetLastError = true)] public static extern bool InternetSetCookie(string lpszUrlName, string lbszCookieName, string lpszCookieData);
使用api设置就能实现,在需要设置webbrowser的cookie,访问网站。
转载于:https://my.oschina.net/FoolFool/blog/528814