| 1234567891011121314151617181920212223 |
- //
- // System.Web.UI.OutputCacheLocation.cs
- //
- // Author:
- // Bob Smith <[email protected]>
- //
- // (C) Bob Smith
- //
- using System;
- using System.Web;
- namespace System.Web.UI
- {
- public enum OutputCacheLocation
- {
- Any,
- Client,
- Downstream,
- Server,
- None
- }
- }
|