ResponseCacheLocation Enum
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.
Determines the value for the "Cache-control" header in the response.
public enum class ResponseCacheLocation
public enum ResponseCacheLocation
type ResponseCacheLocation =
Public Enum ResponseCacheLocation
- Inheritance
-
ResponseCacheLocation
Fields
Name | Value | Description |
---|---|---|
Any | 0 | Cached in both proxies and client. Sets "Cache-control" header to "public". |
Client | 1 | Cached only in the client. Sets "Cache-control" header to "private". |
None | 2 | "Cache-control" and "Pragma" headers are set to "no-cache". |