cookiemanager class : CookieKeys(string) method
Description
Returns a list of cookie names associated with the specified URL.
Syntax
instance.CookieKeys(string url)
Arguments
Class | Name | Description |
string | url | URL. |
Return value
Class | Description |
list{string} | A list of cookie names. |
Sample code
1: | cookiemanager cm; |
2: | list{string} keys = cm.CookieKeys("https://example.com"); |
Notes
None.
Links for reference
None.