HttpCookie.Value Propiedad

Definición

Obtiene o establece el valor de HttpCookie.

public:
 property Platform::String ^ Value { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring Value();

void Value(winrt::hstring value);
public string Value { get; set; }
var string = httpCookie.value;
httpCookie.value = string;
Public Property Value As String

Valor de propiedad

String

Platform::String

winrt::hstring

Valor de HttpCookie.

Comentarios

El valor de HttpCookie no debe establecerse en null (Nothing en Visual Basic).

Los caracteres siguientes están reservados y no se pueden usar para esta propiedad:

  • barra diagonal inversa ('\')
  • coma (',')
  • punto y coma (';')

Se aplica a