HttpCookie.Value 属性

定义

获取或设置 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

属性值

String

Platform::String

winrt::hstring

HttpCookie 的值。

注解

不得将 HttpCookie 的值设置为 null, (Visual Basic) 中“无”。

以下字符是保留的,不能用于此属性:

  • 反斜杠 ('\')
  • 逗号 (',')
  • 分号 (';')

适用于