2010-01-20 Zoltan Varga <vargaz@gmail.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                 string _varyByContentEncoding;
48                 
49                 #endregion
50
51                 #region Constructors
52
53                 public OutputCacheParameters () {
54                         Duration = 0;
55                         Enabled = true;
56                         Location = OutputCacheLocation.Any;
57                         NoStore = false;
58                 }
59
60                 #endregion
61
62                 #region Properties
63
64                 public string CacheProfile {
65                         get { return _cacheProfile; }
66                         set { _cacheProfile = value; }
67                 }
68
69                 public int Duration {
70                         get { return _duration; }
71                         set { _duration = value; }
72                 }
73
74                 public bool Enabled {
75                         get { return _enabled; }
76                         set { _enabled = value; }
77                 }
78
79                 public OutputCacheLocation Location {
80                         get { return _location; }
81                         set { _location = value; }
82                 }
83
84                 public bool NoStore {
85                         get { return _noStore; }
86                         set { _noStore = value; }
87                 }
88
89                 public string SqlDependency {
90                         get { return _sqlDependency; }
91                         set { _sqlDependency = value; }
92                 }
93
94                 public string VaryByContentEncoding {
95                         get { return _varyByContentEncoding; }
96                         set { _varyByContentEncoding = value; }
97                 }
98                 
99                 public string VaryByControl {
100                         get { return _varByControl; }
101                         set { _varByControl = value; }
102                 }
103
104                 public string VaryByCustom {
105                         get { return _varByCustom; }
106                         set { _varByCustom = value; }
107                 }
108
109                 public string VaryByHeader {
110                         get { return _varByHeader; }
111                         set { _varByHeader = value; }
112                 }
113
114                 public string VaryByParam {
115                         get { return _varByParam; }
116                         set { _varByParam = value; }
117                 }
118
119                 #endregion
120
121                 #region Methods
122
123                 #endregion
124         }
125 }
126
127 #endif