HttpRequestCachePolicy::MaxStale Property

 

Gets the maximum staleness value that is permitted for a resource returned from the cache.

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

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

Property Value

Type: System::TimeSpan

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

This property specifies the amount of time after content expiration during which the cached copy of the resource is acceptable. 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^ CreateMaxStalePolicy( TimeSpan span )
{
   HttpRequestCachePolicy^ policy = gcnew HttpRequestCachePolicy( HttpCacheAgeControl::MaxStale,span );
   Console::WriteLine( L"Max stale is {0}", policy->MaxStale );
   return policy;
}

.NET Framework
Available since 2.0
Return to top
Show: