Eric Yin
Eric Yin

Reputation: 9003

How to remove cookies under 1 domain in CookieContainer

In System.Net.CookieContainer

if I want to remove all cookies under a domain name, how?

Upvotes: 19

Views: 16727

Answers (1)

Rob
Rob

Reputation: 1081

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.

Upvotes: 31

Related Questions