cookie class : Value getter
Description
Returns the cookie value.
Syntax
instance.Value
Arguments
None.
Return value
Class | Description |
string | Value of the cookie. |
Sample code
1: | browser br; |
2: | cookie coo = br.GetCookie("Example"); |
3: | string val = coo.Value; |
Notes
None.
Links for reference
None.