다음을 통해 공유


HttpCookie.Value 속성

정의

개별 쿠키 값을 가져오거나 설정합니다.

public:
 property System::String ^ Value { System::String ^ get(); void set(System::String ^ value); };
public string Value { get; set; }
member this.Value : string with get, set
Public Property Value As String

속성 값

String

쿠키의 값입니다. 기본값은 null 참조(Visual Basic의 경우 Nothing)입니다.

예제

다음 코드 예제에서는 기존 쿠키의 값을 "abc123"으로 설정합니다.

MyCookie.Value = "abc123";

MyCookie.Value = "abc123"
    

적용 대상