OutputCacheLocation

OutputCacheLocationserializable

System.Web.UI (system.web.dll)enum

You can enable output caching for an ASP.NET page by using the System.Web.HttpCachePolicy class or adding a page directive. This enumeration is used by ASP.NET when it calls the Page.InitOutputCache( ) method. It specifies whether the page is cached locally on the client (Client), on the web server (Server), or on another server between the client and the web server (Downstream).

public enum OutputCacheLocation {    Any = 0,    Client = 1,    Downstream = 2,    Server = 3,    None = 4,    ServerAndClient = 5 }

Hierarchy

System.Object System.ValueType System.Enum(System.IComparable, System.IFormattable, System.IConvertible) OutputCacheLocation

Passed To

Page.InitOutputCache( )



ASP. NET in a Nutshell
ASP.NET in a Nutshell, Second Edition
ISBN: 0596005202
EAN: 2147483647
Year: 2003
Pages: 873

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net