HttpCacheVaryByHeaders.AcceptTypes Property

Definition

Gets or sets a value indicating whether the ASP.NET output cache varies the cached responses by the Accept HTTP header, and appends it to the out-going Vary HTTP header.

C#
public bool AcceptTypes { get; set; }

Property Value

true when the ASP.NET output cache varies by the Accept header; otherwise, false. The default value is false.

Examples

This following code example demonstrates how some action is performed only if the AcceptTypes property is true.

C#
Response.Cache.VaryByHeaders.AcceptTypes = true;

Remarks

The Vary header indicates the request-header fields that the server varies the response by the Accept field and specifies that the server selects the response based on the media types acceptable to the client.

For more information on HTTP headers, see RFC 2616: Hypertext Transfer Protocol -- HTTP/1.1, available on the World Wide Web Consortium (W3C) Web site. See section 14, "Header Field Definitions", for complete details.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1