HttpRequestCachePolicy::MaxAge Property

 

Gets the maximum age permitted for a resource returned from the cache.

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

public:
property TimeSpan MaxAge {
	TimeSpan get();
}

Property Value

Type: System::TimeSpan

A TimeSpan value that is set to the maximum age value specified when this instance was created. If no date was specified, this property's value is MinValue.

If the cached copy of the resource is older than the specified time value, the resource must be revalidated. The value for this property is specified when the instance is constructed.

The following code example demonstrates displaying the value of this property.

static HttpRequestCachePolicy^ CreateMaxAgePolicy( TimeSpan span )
{
   HttpRequestCachePolicy^ policy = gcnew HttpRequestCachePolicy( HttpCacheAgeControl::MaxAge,span );
   Console::WriteLine( L"Max age is {0}", policy->MaxAge );
   return policy;
}

.NET Framework
Available since 2.0
Return to top
Show: