This documentation is archived and is not being maintained.
HttpCacheAgeControl Enumeration
Visual Studio 2010
Specifies the meaning of time values that control caching behavior for resources obtained using HttpWebRequest objects.
Assembly: System (in System.dll)
| Member name | Description | |
|---|---|---|
| None | For internal use only. The Framework will throw an ArgumentException if you try to use this member. | |
| MinFresh | Content can be taken from the cache if the time remaining before expiration is greater than or equal to the time specified with this value. | |
| MaxAge | Content can be taken from the cache until it is older than the age specified with this value. | |
| MaxStale | Content can be taken from the cache after it has expired, until the time specified with this value elapses. | |
| MaxAgeAndMinFresh | MaxAge and MinFresh. | |
| MaxAgeAndMaxStale | MaxAge and MaxStale. |
This enumeration is used by members of the HttpRequestCachePolicy class to configure the time values for cache policies.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: