CookieContainer.SetCookies Method
Adds Cookie instances for one or more cookies from an HTTP cookie header to the CookieContainer for a specific URI.
Namespace: System.Net
Assembly: System (in System.dll)
Parameters
- uri
- Type: System.Uri
The URI of the CookieCollection.
- cookieHeader
- Type: System.String
The contents of an HTTP set-cookie header as returned by a HTTP server, with Cookie instances delimited by commas.
| Exception | Condition |
|---|---|
| ArgumentNullException | uri is Nothing. |
| ArgumentNullException | cookieHeader is Nothing. |
| CookieException | One of the cookies is invalid. -or- An error occurred while adding one of the cookies to the container. |
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.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.