HttpCachePolicy.SetOmitVaryStar Method (System.Web)

Switch View :
ScriptFree
.NET Framework Class Library
HttpCachePolicy.SetOmitVaryStar Method

Specifies whether the response should contain the vary:* header when varying by parameters.

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

Visual Basic
Public Sub SetOmitVaryStar ( _
	omit As Boolean _
)
C#
public void SetOmitVaryStar(
	bool omit
)
Visual C++
public:
void SetOmitVaryStar(
	bool omit
)
F#
member SetOmitVaryStar : 
        omit:bool -> unit 

Parameters

omit
Type: System.Boolean
true to direct the HttpCachePolicy to not use the * value for its VaryByHeaders property; otherwise, false.
Remarks

This method allows you to prevent the output ached from adding a vary:* header to the outgoing response when the cached response varies by parameter. This is useful for clients varying caching by query string because most clients will automatically vary by query string without requiring the vary:* header.

Note Note

The use of the vary:* header can disable all client caching.

This is a convenience method to affect the VaryByHeaders property. Passing true to the method directs the HttpCachePolicy to ignore the * value for the VaryByHeaders property.

SetOmitVaryStar is introduced in the .NET Framework version 3.5. For more information, see .NET Framework Versions and Dependencies.

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference