Wish IsHttpOnly to be exposed on the Cookie

mindful

Active Member
Licensed User
just as the title - it is very usefull to provide this with the CookieWrapper as now I am using JavaObject to access this method.

I need to check if the cookie is set as HttpOnly, just to be sure it is set by the server and not some javascript.
 

mindful

Active Member
Licensed User
I can't use this to verify if a cookie set in the browser was set as httponly, because browser does not send cookie information other than the value, such as httponly, secure, maxage, path, etc back. The browser only sends the cookie value back associated with the cookie name.

So maybe is usefull to implement all the methods from the Cookie class.

Thanks!
 
Top