CookieContainer.SetCookies(Uri, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds Cookie instances for one or more cookies from an HTTP cookie header to the CookieContainer for a specific URI.
public:
void SetCookies(Uri ^ uri, System::String ^ cookieHeader);
public void SetCookies (Uri uri, string cookieHeader);
member this.SetCookies : Uri * string -> unit
Public Sub SetCookies (uri As Uri, cookieHeader As String)
Parameters
- uri
- Uri
The URI of the CookieCollection.
- cookieHeader
- String
The contents of an HTTP set-cookie header as returned by a HTTP server, with Cookie instances delimited by commas.
Exceptions
uri
or cookieHeader
is null
.
One of the cookies is invalid.
-or-
An error occurred while adding one of the cookies to the container.
Remarks
SetCookies pulls all the HTTP cookies out of the HTTP cookie header, builds a Cookie for each one, and then adds each Cookie to the internal CookieCollection that is associated with the URI. The HTTP cookies in the cookieHeader
string must be delimited by commas.