HtmlDocument.Cookie 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 HTTP cookies associated with this document.
public:
property System::String ^ Cookie { System::String ^ get(); void set(System::String ^ value); };
public string Cookie { get; set; }
member this.Cookie : string with get, set
Public Property Cookie As String
Property Value
A String containing a list of cookies, with each cookie separated by a semicolon.
Remarks
The Cookie property of HtmlDocument exposes all cookies set for a Web page.
A cookie is an arbitrary name/value pair associated with a given Web page. Web developers use cookies to track when users visit or return to a Web site. A cookie is composed of multiple parts, called cookie crumbs, that determine the following:
The document set to which the cookie applies; its domain and path.
The name and value of the cookie.
The expiration date of the cookie.
Whether the cookie can only be sent using a secure connection.
The Cookie property may contain multiple cookies.
You can only use the Cookie property to set one cookie at a time.