Need to access HttpOnly cookie in HttpWebResponse
问题 I am trying to get automatically login into a website using POST method and everything seem to work fine except that my HttPWebResponse method conveniently skips a cookie that is marked as HttpOnly. Is there any way I can read it. public CookieContainer _cookies = new CookieContainer(); down in the code I have request.CookieContainer = _cookies; I have read that when using CookieContainer I should not worry about reading the HttpOnly cookies as they are handled atomically. But apparently this