Cache.NoAbsoluteExpiration Field

Used in the absoluteExpiration parameter in an Insert method call to indicate the item should never expire. This field is read-only.

Namespace: System.Web.Caching
Assembly: System.Web (in system.web.dll)

public:
static initonly DateTime NoAbsoluteExpiration
public static final DateTime NoAbsoluteExpiration
public static final var NoAbsoluteExpiration : DateTime
Not applicable.

When used, this field sets the absoluteExpiration parameter equal to MaxValue, which is a constant representing the largest possible DateTime value, 12/31/9999 11:59:59 PM.

TopicLocation
How to: Add Items to the CacheBuilding ASP .NET Web Applications
How to: Add Items to the CacheBuilding ASP .NET Web Applications

The following example demonstrates how to use the NoAbsoluteExpiration field to disable absolute expirations when inserting an item in the Cache.

No code example is currently available or this language may not be supported.
get_Cache().Insert("DSN", connectionString, null, 
    System.Web.Caching.Cache.NoAbsoluteExpiration, 
    TimeSpan.FromSeconds(10));

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0, 1.1, 1.0

Community Additions

ADD
Show: