This documentation is archived and is not being maintained.

HttpCacheVaryByHeaders::AcceptTypes Property

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.

Namespace:  System.Web
Assembly:  System.Web (in System.Web.dll)

public:
property bool AcceptTypes {
	bool get ();
	void set (bool value);
}

Property Value

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

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.

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

No code example is currently available or this language may not be supported.
[Visual Basic]
<%
'This example performs some action only if the AcceptTypes
property
'is True.
If Response.Cache.VaryByHeaders.AcceptTypes = True Then
   ...
End If
%>

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
Show: