Top "Cookiecontainer" questions

Provides a container for a collection of CookieCollection objects.

Using CookieContainer with WebClient class

I've previously used a CookieContainer with HttpWebRequest and HttpWebResponse sessions, but now, I want to use it with a WebClient. …

c# cookies httpwebrequest webclient cookiecontainer
Use cookies from CookieContainer in WebBrowser

Is there any way that I can actually use the cookies from a cookie container (taken from a WebRequest previously) …

c# .net winforms webbrowser-control cookiecontainer
How can I get all Cookies of a CookieContainer?

I want to export a CookieContainer to JSON using Newtonsoft.Json but unfortunately CookieContainer hasn't an enumerator or stuff, so …

c# .net cookiecontainer
powershell httpwebrequest GET method cookiecontainer problem?

I'm trying to scrape a website that has user authentication. I am able to do a POST to send my …

powershell httpwebrequest httpwebresponse cookiecontainer
Sending cookies using HttpCookieCollection and CookieContainer

I want to tunnel through an HTTP request from my server to a remote server, passing through all the cookies. …

c# .net cookies cookiecontainer
HttpWebRequest cookie with empty domain

I have an ASP.NET MVC action that sends a GET request to another server via HttpWebRequest. I'd like to …

httpwebrequest cookiecontainer
C#: Writing a CookieContainer to Disk and Loading Back In For Use

I have a CookieContainer extracted from a HttpWebRequest/HttpWebResponse session named CookieJar. I want my application to store cookies between …

c# file-io cookies httpwebrequest cookiecontainer
CookieContainer confusion

From what I understand, the basic use of the CookieContainer to persist cookies through HttpWebRequests is as follows: HttpWebRequest request = (…

c# session httpwebrequest cookiecontainer
WCF Web Service Client using a CookieContainer

I have developed a small C# form application which calls a web service. Everything works nicely but I need to …

c# wcf web-services cookies cookiecontainer
Managing cookies in a WPF WebBrowser control?

Is there a way to read/write the cookies that a WebBrowser control uses? I am doing something like this... …

wpf cookies httpwebrequest browser cookiecontainer