Keeping these in mind
I'm having trouble wrapping my head around this... Is this code "thread safe" in ASP.NET?
public static bool IsCookieMissing()
{
foreach (string cookieKey in HttpContext.Current.Request.Cookies.AllKeys)
{
if (cookieKey.EndsWith("cookie_name"))
{
return false;
}
}
return true;
}