Cookie Constructor (String, String)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Initializes a new instance of the Cookie class with the specified name and value.
Assembly: System.Net (in System.Net.dll)
Parameters
- name
- Type: System.String
The name of the Cookie. The name parameter cannot contain the following characters: equal sign (=), semicolon (;), comma (,), newline (\n), return (\r), tab (\t), and space character. The dollar sign character ($) cannot be the first character.
- value
- Type: System.String
The value for the Cookie. The value parameter cannot contain a semicolon (;) or a comma (,) unless they are contained in escaped double quotes.
| Exception | Condition |
|---|---|
| CookieException | name is Nothing or an empty string (""). -or- name contains an unauthorized character. Using one of the following characters will cause an exception:
value is Nothing or contains a semicolon (;) or a comma (,) that is not contained in escaped double quotes. |