使 .NET WebBrowser 不与 IE 或其他实例共享 cookie
Posted
技术标签:
【中文标题】使 .NET WebBrowser 不与 IE 或其他实例共享 cookie【英文标题】:Make .NET WebBrowser not to share cookies with IE or other Instances 【发布时间】:2013-08-14 06:53:32 【问题描述】:由于 C# 中的 WebBrowser 与包括 IE 在内的所有其他 WebBrowser 实例共享 cookie,我希望 WebBrowser 拥有自己的 cookie 容器,该容器不共享之前在 IE 或其他实例中创建的任何 cookie。
例如,当我创建一个 WebBrowser 时,它不应该有任何 cookie。 当我运行 2 个 WebBrowsers 实例时,它们有自己的 cookie 容器,并且不会相互共享或冲突 cookie。
我怎样才能做到这一点?
【问题讨论】:
【参考方案1】:您可以使用InternetSetOption
Win32 函数为每个进程执行此操作:
[DllImport("wininet.dll", CharSet = System.Runtime.InteropServices.CharSet.Auto, SetLastError = true)]
public static extern bool InternetSetOption(int hInternet, int dwOption, IntPtr lpBuffer, int dwBufferLength);
然后在您的应用程序启动时调用以下函数:
private unsafe void SuppressWininetBehavior()
/* SOURCE: http://msdn.microsoft.com/en-us/library/windows/desktop/aa385328%28v=vs.85%29.aspx
* INTERNET_OPTION_SUPPRESS_BEHAVIOR (81):
* A general purpose option that is used to suppress behaviors on a process-wide basis.
* The lpBuffer parameter of the function must be a pointer to a DWORD containing the specific behavior to suppress.
* This option cannot be queried with InternetQueryOption.
*
* INTERNET_SUPPRESS_COOKIE_PERSIST (3):
* Suppresses the persistence of cookies, even if the server has specified them as persistent.
* Version: Requires Internet Explorer 8.0 or later.
*/
int option = (int)3/* INTERNET_SUPPRESS_COOKIE_PERSIST*/;
int* optionPtr = &option;
bool success = InternetSetOption(0, 81/*INTERNET_OPTION_SUPPRESS_BEHAVIOR*/, new IntPtr(optionPtr), sizeof(int));
if (!success)
MessageBox.Show("Something went wrong !>?");
【讨论】:
我不这么认为。毕竟不要忘记您正在使用的 WebBrowser 控件只是代表 Internet Explorer 的本机 COM 对象的包装器。 关于共享 cookie,我认为即使在每个线程的基础上也是不可能的。对于 WebBrowser 实例,会话是按进程共享的。这是一个类似的question。 为了避免unsafe
关键字,我将界面改为使用ref int
而不是IntPtr
所以现在看起来像:public static extern bool InternetSetOption(int hInternet, int dwOption, ref int option, int dwBufferLength);
以上是关于使 .NET WebBrowser 不与 IE 或其他实例共享 cookie的主要内容,如果未能解决你的问题,请参考以下文章
VB.net webbrowser如何使用IE11内核?IE7内核很多网站不支持!
winform webbrowser如何强制使用ie11内核?