Gets the value of the specified cookie, at the specified domain and path.
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
Syntax
Parameters
- domain
- Type: System String
The domain of the cookie.
- path
- Type: System String
The path within the domain of the cookie.
- cookieName
- Type: System String
The name of the cookie.
Return Value
The value of the key/value pair stored as a cookie at the specified domain and path.Remarks
Examples
Set-Cookie: SESSIONID=99; path=/cookies; expires=Mon, 01-Jan-2003 00:00:00 GMT http://www.mycookiesite.com:8080/ // No cookie stored at this path http://www.mycookiesite.com:8080/cookies/ // Cookie SESSIONID stored here http://www.mycookiesite.com:8080/cookies/howto // SESSIONID available here http://www.mycookiesite.com:8080/cookies/howto/bake // SESSIONID available here
// assuming the cookie has been set as above, // the following calls can be made to obtain the value of SESSIONID string cookie; cookie = WebBrowser.GetCookieValue("www.mycookiesite.com", "/cookies/", "SESSIONID"); cookie = WebBrowser.GetCookieValue("www.mycookiesite.com", "/cookies/howto/", "SESSIONID"); cookie = WebBrowser.GetCookieValue("www.mycookiesite.com", "/cookies/howto/bake/", "SESSIONID"); // the following call will not return a value as the path "/" // is above the path at which the cookie is stored ("/cookies") cookie = WebBrowser.GetCookieValue("www.mycookiesite.com", "/", "SESSIONID");
See Also