2007-04-13 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / System.Web.UI / OutputCacheParameters.cs
1 //
2 // System.Web.UI.OutputCacheParameters.cs
3 //
4 // Noam Lampert  (noaml@mainsoft.com)
5 //
6 //
7 // Permission is hereby granted, free of charge, to any person obtaining
8 // a copy of this software and associated documentation files (the
9 // "Software"), to deal in the Software without restriction, including
10 // without limitation the rights to use, copy, modify, merge, publish,
11 // distribute, sublicense, and/or sell copies of the Software, and to
12 // permit persons to whom the Software is furnished to do so, subject to
13 // the following conditions:
14 // 
15 // The above copyright notice and this permission notice shall be
16 // included in all copies or substantial portions of the Software.
17 // 
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 //
26 #if NET_2_0
27
28 using System.ComponentModel;
29 using System.Security.Permissions;
30
31 namespace System.Web.UI
32 {
33         public sealed class OutputCacheParameters
34         {
35                 #region Fields
36
37                 string _cacheProfile;
38                 int _duration;
39                 bool _enabled;
40                 OutputCacheLocation _location;
41                 bool _noStore;
42                 string _sqlDependency;
43                 string _varByControl;
44                 string _varByCustom;
45                 string _varByHeader;
46                 string _varByParam;
47
48                 #endregion
49
50                 #region Constructors
51
52                 public OutputCacheParameters () {
53                         Duration = 0;
54                         Enabled = true;
55                         Location = OutputCacheLocation.Any;
56                         NoStore = false;
57                 }
58
59                 #endregion
60
61                 #region Properties
62
63                 public string CacheProfile {
64                         get { return _cacheProfile; }
65                         set { _cacheProfile = value; }
66                 }
67
68                 public int Duration {
69                         get { return _duration; }
70                         set { _duration = value; }
71                 }
72
73                 public bool Enabled {
74                         get { return _enabled; }
75                         set { _enabled = value; }
76                 }
77
78                 public OutputCacheLocation Location {
79                         get { return _location; }
80                         set { _location = value; }
81                 }
82
83                 public bool NoStore {
84                         get { return _noStore; }
85                         set { _noStore = value; }
86                 }
87
88                 public string SqlDependency {
89                         get { return _sqlDependency; }
90                         set { _sqlDependency = value; }
91                 }
92
93                 public string VaryByControl {
94                         get { return _varByControl; }
95                         set { _varByControl = value; }
96                 }
97
98                 public string VaryByCustom {
99                         get { return _varByCustom; }
100                         set { _varByCustom = value; }
101                 }
102
103                 public string VaryByHeader {
104                         get { return _varByHeader; }
105                         set { _varByHeader = value; }
106                 }
107
108                 public string VaryByParam {
109                         get { return _varByParam; }
110                         set { _varByParam = value; }
111                 }
112
113                 #endregion
114
115                 #region Methods
116
117                 #endregion
118         }
119 }
120
121 #endif