gpt4 book ai didi

c# - 使 .NET WebBrowser 不与 IE 或其他实例共享 cookie

转载 作者:太空狗 更新时间:2023-10-29 23:23:21 25 4
gpt4 key购买 nike

由于 C# 中的 WebBrowser 与包括 IE 在内的所有其他 WebBrowsers 实例共享 cookie,我希望 WebBrowser 拥有自己的 cookie 容器,该容器不共享之前在 IE 或其他实例中创建的任何 cookie。

例如,当我创建一个 WebBrowser 时,它不应该有任何 cookie。当我运行 2 个 WebBrowsers 实例时,它们有自己的 cookie 容器,并且不会彼此共享或冲突 cookie。

我怎样才能做到这一点?

最佳答案

您可以使用 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 !>?");
}
}

关于c# - 使 .NET WebBrowser 不与 IE 或其他实例共享 cookie,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18195844/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com