HttpClientHandler.CookieContainer Property
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.
Gets or sets the cookie container used to store server cookies by the handler.
public:
property System::Net::CookieContainer ^ CookieContainer { System::Net::CookieContainer ^ get(); void set(System::Net::CookieContainer ^ value); };
public System.Net.CookieContainer CookieContainer { get; set; }
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public System.Net.CookieContainer CookieContainer { get; set; }
member this.CookieContainer : System.Net.CookieContainer with get, set
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
member this.CookieContainer : System.Net.CookieContainer with get, set
Public Property CookieContainer As CookieContainer
Property Value
The cookie container used to store server cookies by the handler.
- Attributes
Remarks
The CookieContainer property provides an instance of the CookieContainer class that contains the cookies associated with this handler.
If the UseCookies property is true
, the CookieContainer property represents the cookie container used to store the server cookies. The user can set custom cookies before sending requests using this property. If the UseCookies property is false and the user adds cookies to CookieContainer, cookies are ignored and not sent to the server. Setting the CookieContainer to null
will throw an exception.