CacheControlHeaderValue.MinFresh Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The freshness lifetime, in seconds, that an HTTP client is willing to accept a response.
public:
property Nullable<TimeSpan> MinFresh { Nullable<TimeSpan> get(); void set(Nullable<TimeSpan> value); };
public TimeSpan? MinFresh { get; set; }
member this.MinFresh : Nullable<TimeSpan> with get, set
Public Property MinFresh As Nullable(Of TimeSpan)
Property Value
The time in seconds.
Remarks
This property represents the "min-fresh" directive in a cache-control header field on an HTTP request.
The property indicates that the HTTP client is willing to accept a response whose freshness lifetime is no less than its current age plus the freshness lifetime specified time in seconds. The client wants a response that will still be fresh for at least the current age plus the freshness lifetime.