Is it possible to overwrite a HttpOnly Session cookie that is already set in c# WebBrowserControl. I tried to overwrite the cookie with InternetSetCookieEx and InternetSetCookie, but both of them fail with error 4317 ERROR_INVALID_OPERATION.
If there is any alternative way to overwrite HttpOnly Session Cookie in c# web browser control please let me know.
Note that if the cookie is not set before these above apis work properly.
I don't want to reset the browser session using INTERNET_OPTION_END_BROWSER_SESSION, because there other sessions that i don't want to destroy.