When i write HttpContext.Current.Response.Cookies
in visual studio it says
Get the cookie with specified numerical index from the cookie collection
But when i use it to get cookie it sets if there is no cookie with name.
MSDN says
The Cookies collection sets the value of a cookie. If the specified cookie does not exist, it is created. If the cookie exists, it takes the new value, and the old value is discarded.
I know that request comes from browser and response goes form server. But still why does the immediate help says so?
Am i missing something ?