.NET Framework Class Library
RequestCachingSection..::.UnspecifiedMaximumAge Property

Updated: November 2007

Gets or sets a value used as the maximum age for cached resources that do not have expiration information.

Namespace:  System.Net.Configuration
Assembly:  System (in System.dll)

Visual Basic (Declaration)
<ConfigurationPropertyAttribute("unspecifiedMaximumAge", DefaultValue := "1.00:00:00")> _
Public Property UnspecifiedMaximumAge As TimeSpan
Visual Basic (Usage)
Dim instance As RequestCachingSection
Dim value As TimeSpan

value = instance.UnspecifiedMaximumAge

instance.UnspecifiedMaximumAge = value
C#
[ConfigurationPropertyAttribute("unspecifiedMaximumAge", DefaultValue = "1.00:00:00")]
public TimeSpan UnspecifiedMaximumAge { get; set; }
Visual C++
[ConfigurationPropertyAttribute(L"unspecifiedMaximumAge", DefaultValue = L"1.00:00:00")]
public:
property TimeSpan UnspecifiedMaximumAge {
    TimeSpan get ();
    void set (TimeSpan value);
}
J#
/** @property */
/** @attribute ConfigurationPropertyAttribute("unspecifiedMaximumAge", DefaultValue = "1.00:00:00") */
public TimeSpan get_UnspecifiedMaximumAge()
/** @property */
/** @attribute ConfigurationPropertyAttribute("unspecifiedMaximumAge", DefaultValue = "1.00:00:00") */
public  void set_UnspecifiedMaximumAge(TimeSpan value)
JScript
public function get UnspecifiedMaximumAge () : TimeSpan
public function set UnspecifiedMaximumAge (value : TimeSpan)

Property Value

Type: System..::.TimeSpan

A TimeSpan that provides a default maximum age for cached resources.

Setting this property ensures that a resource that does not have expiration header information does not remain fresh in the cache indefinitely.

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

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Page view tracker