AnonymousIdentificationSection.CookieSlidingExpiration Property

Definition

Gets or sets whether the cookie time-out value is reset on each request.

public:
 property bool CookieSlidingExpiration { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("cookieSlidingExpiration", DefaultValue=true)]
public bool CookieSlidingExpiration { get; set; }
[<System.Configuration.ConfigurationProperty("cookieSlidingExpiration", DefaultValue=true)>]
member this.CookieSlidingExpiration : bool with get, set
Public Property CookieSlidingExpiration As Boolean

Property Value

true if the sliding expiration is enabled; otherwise, false. The default is false.

Attributes

Examples

The following code example shows how to access the CookieSlidingExpiration property.

// Get CookieSlidingExpiration.
bool cookieSlidingExpiration = 
    anonymousIdentificationSection.CookieSlidingExpiration;
Console.WriteLine("Cookie sliding expiration: {0}",
    cookieSlidingExpiration.ToString());
' Get CookieSlidingExpiration.
Dim cookieSlidingExpiration As Boolean = _
anonymousIdentificationSection.CookieSlidingExpiration
Console.WriteLine( _
"Cookie sliding expiration: {0}", _
cookieSlidingExpiration.ToString())

Remarks

When CookieSlidingExpiration is set to true and less than half of the time specified by the CookieTimeout property remains, for each request issued during a single session, the time interval during which the cookie is valid is reset to CookieTimeout. When CookieSlidingExpiration is set to false, the cookie expires at a set point in time.

Applies to