OutputCacheLocation.cs 354 B

1234567891011121314151617181920212223
  1. //
  2. // System.Web.UI.OutputCacheLocation.cs
  3. //
  4. // Author:
  5. // Bob Smith <[email protected]>
  6. //
  7. // (C) Bob Smith
  8. //
  9. using System;
  10. using System.Web;
  11. namespace System.Web.UI
  12. {
  13. public enum OutputCacheLocation
  14. {
  15. Any,
  16. Client,
  17. Downstream,
  18. Server,
  19. None
  20. }
  21. }