CacheControlHeaderValue.OnlyIfCached Property

Definition

Whether a cache should either respond using a cached entry that is consistent with the other constraints of the HTTP request, or respond with a 504 (Gateway Timeout) status.

public:
 property bool OnlyIfCached { bool get(); void set(bool value); };
public bool OnlyIfCached { get; set; }
member this.OnlyIfCached : bool with get, set
Public Property OnlyIfCached As Boolean

Property Value

true if a cache should either respond using a cached entry that is consistent with the other constraints of the HTTP request, or respond with a 504 (Gateway Timeout) status; otherwise, false.

Remarks

This property represents the "only-if-cached" directive in a cache-control header field on an HTTP request.

Applies to