OutputCacheProfile.Location Property

 

Gets or sets the output cache location.

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

[ConfigurationPropertyAttribute("location")]
public OutputCacheLocation Location { get; set; }

Property Value

Type: System.Web.UI.OutputCacheLocation

One of the OutputCacheLocation enumeration values. The default is Any.

If Location is set to Any, the output cache can be located on the browser client, where the request originated; on a proxy server, or any other server, participating in the request; or on the server where the request was processed.

The following code example shows how to use the Location property.


// Get the current Location.
System.Web.UI.OutputCacheLocation locationValue = 
    outputCacheProfile.Location;

// Set the Location property to null.
outputCacheProfile.Location = 
    System.Web.UI.OutputCacheLocation.Server;

.NET Framework
Available since 2.0
Return to top
Show: