HttpCookie.Expires Property

Definition

Gets or sets the expiration date and time for the cookie.

public:
 property DateTime Expires { DateTime get(); void set(DateTime value); };
public DateTime Expires { get; set; }
member this.Expires : DateTime with get, set
Public Property Expires As DateTime

Property Value

The time of day (on the client) at which the cookie expires.

Examples

The following code example sets the expiration time of the cookie to 10 minutes from the current time.

MyCookie.Expires = DateTime.Now.AddMinutes(10.0);
MyCookie.Expires = DateTime.Now.AddMinutes(10.0)

Applies to