* SchemaTypes.cs: Changed DataSet type for a more generic XmlSerializable.
[mono.git] / mcs / class / System.Web / System.Web.UI / OutputCacheLocation.cs
1 //
2 // System.Web.UI.OutputCacheLocation.cs
3 //
4 // Author:
5 //   Bob Smith <bob@thestuff.net>
6 //
7 // (C) Bob Smith
8 //
9
10 using System;
11 using System.Web;
12
13 namespace System.Web.UI
14 {
15         public enum OutputCacheLocation
16         {
17                 Any,
18                 Client,
19                 Downstream,
20                 Server,
21                 None
22         }
23 }