HttpCookie.Value Property

Definition

Returns the value of the cookie. -or- Assigns a new value to a cookie after the cookie is created.

public string? Value { [Android.Runtime.Register("getValue", "()Ljava/lang/String;", "")] get; [Android.Runtime.Register("setValue", "(Ljava/lang/String;)V", "")] set; }
[<get: Android.Runtime.Register("getValue", "()Ljava/lang/String;", "")>]
[<set: Android.Runtime.Register("setValue", "(Ljava/lang/String;)V", "")>]
member this.Value : string with get, set

Property Value

String

a String containing the cookie's present value

Attributes

Remarks

Property getter documentation:

Java documentation for java.net.HttpCookie.getValue().

Property setter documentation:

Java documentation for java.net.HttpCookie.setValue(java.lang.String).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to