Click or drag to resize
HttpCacheability Enumeration
Provides enumerated values that are used to set the Cache-Control HTTP header.

Namespace: CMS.Base
Assembly: CMS.Base (in CMS.Base.dll) Version: 12.0.0
Syntax
C#
public enum HttpCacheability
Members
  Member nameValueDescription
NoCache1 Indicates that without a field name, a cache must force successful revalidation with the origin server before satisfying the request. With a field name, the cache may use the response to satisfy a subsequent request.
Private2 Default value. Specifies that the response is cacheable only on the client, not by shared caches.
Server3 Specifies that the response should only be cached at the server. Clients receive headers equivalent to a NoCache directive.
ServerAndNoCache3
Public4 Specifies that the response is cacheable by clients and shared caches.
ServerAndPrivate5
See Also