Name Property

Cookie.Name Property

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Gets or sets the name of this cookie.

Namespace:  System.Net
Assembly:  System.Net (in System.Net.dll)

'Declaration
Public Property Name As String

Property Value

Type: System.String
The name of the cookie.

ExceptionCondition
CookieException

The value specified for a set operation is Nothing or an empty string ("").

-or-

The value specified for a set operation contains an unauthorized character. Using one of the following characters will cause an exception:

  • equal sign (=)

  • semicolon (;)

  • comma (,)

  • newline (\n)

  • return (\r)

  • tab (\t)

  • space character

  • dollar sign ($) as the first character

The Name property must be initialized before the Cookie is used. Otherwise, an exception will occur.

There are characters that are not allowed to be part of Name, and their use will cause an exception. The following characters that are not allowed:

  • equal sign (=)

  • semicolon (;)

  • comma (,)

  • newline (\n)

  • return (\r)

  • tab (\t)

  • space character

  • dollar sign ($) as the first character

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft