Gets or sets the HTTP cookies associated with this document.
Namespace:
System.Windows.Forms
Assembly:
System.Windows.Forms (in System.Windows.Forms.dll)
Visual Basic (Declaration)
Public Property Cookie As String
Dim instance As HtmlDocument
Dim value As String
value = instance.Cookie
instance.Cookie = value
public string Cookie { get; set; }
public:
property String^ Cookie {
String^ get ();
void set (String^ value);
}
public function get Cookie () : String
public function set Cookie (value : String)
Property Value
Type:
System..::.StringA String containing a list of cookies, with each cookie separated by a semicolon.
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.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0, 2.0
Reference