Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在考虑编写我的第一个 WPF 应用程序。在开始之前,我想知道是否可以操纵现有的浏览器 cookie。
我需要检查是否存在特定的 cookie(我有 cookie 名称)。如果它确实存在,我想修改它的值。
我会很感激任何意见。
设置 Cookie:
Uri u = new Uri(@"C:\Paths");
Application.SetCookie(u, file.FileName);
获取存储在 Cookie 中的值: Uri u = new Uri(@"C:\Paths"); 字符串值 = Application.GetCookie(u);