How to remove cookies under 1 domain in CookieContainer
c#
Solution
You could do something like this.
CookieContainer c = new CookieContainer();
var cookies = c.GetCookies(new Uri("http://www.google.com"));
foreach (Cookie co in cookies)
{
co.Expires = DateTime.Now.Subtract(TimeSpan.FromDays(1));
}
This will expire all cookies for the domain you specify.
Problem
In `System.Net.CookieContainer` if I want to remove all cookies under a domain name, how?