targetNetwork -> targetFramework
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / OutputCacheSection.cs
1 //
2 // System.Web.Configuration.OutputCacheSection
3 //
4 // Authors:
5 //      Chris Toshok (toshok@ximian.com)
6 //
7 // (C) 2005 Novell, Inc (http://www.novell.com)
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System;
32 using System.Configuration;
33
34 #if NET_2_0
35
36 namespace System.Web.Configuration {
37
38         public sealed class OutputCacheSection : ConfigurationSection
39         {
40                 static ConfigurationProperty enableFragmentCacheProp;
41                 static ConfigurationProperty enableOutputCacheProp;
42                 static ConfigurationProperty omitVaryStarProp;
43                 static ConfigurationProperty sendCacheControlHeaderProp;
44                 static ConfigurationProperty enableKernelCacheForVaryByStarProp;
45                 
46                 static ConfigurationPropertyCollection properties;
47
48                 static OutputCacheSection ()
49                 {
50                         enableFragmentCacheProp = new ConfigurationProperty ("enableFragmentCache", typeof (bool), true);
51                         enableOutputCacheProp = new ConfigurationProperty ("enableOutputCache", typeof (bool), true);
52                         omitVaryStarProp = new ConfigurationProperty ("omitVaryStar", typeof (bool), false);
53                         sendCacheControlHeaderProp = new ConfigurationProperty ("sendCacheControlHeader", typeof (bool), true);
54                         enableKernelCacheForVaryByStarProp = new ConfigurationProperty ("enableKernelCacheForVaryByStar",
55                                                                                         typeof (bool), false);
56                         
57                         properties = new ConfigurationPropertyCollection ();
58
59                         properties.Add (enableFragmentCacheProp);
60                         properties.Add (enableOutputCacheProp);
61                         properties.Add (omitVaryStarProp);
62                         properties.Add (sendCacheControlHeaderProp);
63                         properties.Add (enableKernelCacheForVaryByStarProp);
64                 }
65
66                 [ConfigurationProperty ("enableFragmentCache", DefaultValue = "True")]
67                 public bool EnableFragmentCache {
68                         get { return (bool) base [enableFragmentCacheProp];}
69                         set { base[enableFragmentCacheProp] = value; }
70                 }
71
72                 [ConfigurationProperty ("enableOutputCache", DefaultValue = "True")]
73                 public bool EnableOutputCache {
74                         get { return (bool) base [enableOutputCacheProp];}
75                         set { base[enableOutputCacheProp] = value; }
76                 }
77
78                 [ConfigurationProperty ("enableKernelCacheForVaryByStar", DefaultValue = "False")]
79                 public bool EnableKernelCacheForVaryByStar {
80                         get { return (bool) base [enableKernelCacheForVaryByStarProp]; }
81                         set { base [enableKernelCacheForVaryByStarProp] = value; }
82                 }
83                 
84                 [ConfigurationProperty ("omitVaryStar", DefaultValue = "False")]
85                 public bool OmitVaryStar {
86                         get { return (bool) base [omitVaryStarProp];}
87                         set { base[omitVaryStarProp] = value; }
88                 }
89
90                 [ConfigurationProperty ("sendCacheControlHeader", DefaultValue = "True")]
91                 public bool SendCacheControlHeader {
92                         get { return (bool) base [sendCacheControlHeaderProp];}
93                         set { base[sendCacheControlHeaderProp] = value; }
94                 }
95
96                 protected override ConfigurationPropertyCollection Properties {
97                         get { return properties; }
98                 }
99
100         }
101
102 }
103
104 #endif
105