According to this post , cookies cannot be accessed through the API. However, they can be accessed through javascript in the built-in browser (remember to set .IsScriptEnabled = true ).
To iterate over all cookies and delete thme, you can try something like:
var cookies = document.cookie.split(";"); for (var i = 0; i < cookies.length; i++) { eraseCookies(cookies[i].split("=")[0]); }
Or, if eraseCookies do not work (I did not check), you can try:
createCookie(cookies[i].split("=")[0], "", -1);
source share