windows phone 7 - It is possible to delete cookies in wp7 webbrowser control? -
i'm developing application windows phone 7. use webbrowser control , want delete cookies collected during user navigation. tried code below doesn't work(currenttab.browser of type webbrowser).
foreach (cookie c in currenttab.browser.getcookies()) { c.discard = true; c.expired = true; c.expires = datetime.now.adddays(-1d); }
any suggestion?
as far windows phone 8 concerned can use clearcookiesasync();
method clear cookies.
Comments
Post a Comment