Class ReturnedCookie
Represents a cookie returned to the driver by the browser.
public class ReturnedCookie : Cookie
- Inheritance
-
ReturnedCookie
- Inherited Members
Constructors
ReturnedCookie(string, string, string, string, DateTime?, bool, Uri)
Initializes a new instance of the ReturnedCookie class with a specific name, value, domain, path and expiration date.
public ReturnedCookie(string name, string value, string domain, string path, DateTime? expiry, bool isSecure, Uri currentUrl)
Parameters
name
stringThe name of the cookie.
value
stringThe value of the cookie.
domain
stringThe domain of the cookie.
path
stringThe path of the cookie.
expiry
DateTime?The expiration date of the cookie.
isSecure
boolcurrentUrl
UriThe current System.Uri the browser is viewing.
Exceptions
- ArgumentException
If the name is null or an empty string, or if it contains a semi-colon.
- ArgumentNullException
If the value or currentUrl is null.
Properties
CurrentHost
Gets the current URL the browser is viewing.
public string CurrentHost { get; }
Property Value
Secure
Gets a value determining if the cookie is secure.
public override bool Secure { get; }
Property Value
Methods
ToString()
Creates and returns a string representation of the current cookie.
public override string ToString()
Returns
- string
A string representation of the current cookie.