System.Web.Configuration.(AdapterDictionary,AuthenticationMode,MachineKeyValidation...
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / SqlCacheDependencySection.cs
1 //
2 // System.Web.Configuration.SqlCacheDependencySection
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
35 namespace System.Web.Configuration {
36
37         public sealed class SqlCacheDependencySection : ConfigurationSection
38         {
39                 static ConfigurationProperty databasesProp;
40                 static ConfigurationProperty enabledProp;
41                 static ConfigurationProperty pollTimeProp;
42                 static ConfigurationPropertyCollection properties;
43
44                 static ConfigurationElementProperty elementProperty;
45
46                 static SqlCacheDependencySection ()
47                 {
48                         databasesProp = new ConfigurationProperty ("databases", typeof (SqlCacheDependencyDatabaseCollection), null,
49                                                                    null, null, ConfigurationPropertyOptions.None);
50                         enabledProp = new ConfigurationProperty ("enabled", typeof (bool), true);
51                         pollTimeProp = new ConfigurationProperty ("pollTime", typeof (int), 60000);
52                         properties = new ConfigurationPropertyCollection ();
53
54                         properties.Add (databasesProp);
55                         properties.Add (enabledProp);
56                         properties.Add (pollTimeProp);
57
58                         elementProperty = new ConfigurationElementProperty (new CallbackValidator (typeof (SqlCacheDependencySection), ValidateElement));
59                 }
60
61                 static void ValidateElement (object o)
62                 {
63                         /* XXX do some sort of element validation here? */
64                 }
65
66                 protected internal override ConfigurationElementProperty ElementProperty {
67                         get { return elementProperty; }
68                 }
69
70                 protected override void PostDeserialize ()
71                 {
72                         base.PostDeserialize ();
73                 }
74
75                 [ConfigurationProperty ("databases")]
76                 public SqlCacheDependencyDatabaseCollection Databases {
77                         get { return (SqlCacheDependencyDatabaseCollection) base [databasesProp];}
78                 }
79
80                 [ConfigurationProperty ("enabled", DefaultValue = "True")]
81                 public bool Enabled {
82                         get { return (bool) base [enabledProp];}
83                         set { base[enabledProp] = value; }
84                 }
85
86                 [ConfigurationProperty ("pollTime", DefaultValue = "60000")]
87                 public int PollTime {
88                         get { return (int) base [pollTimeProp];}
89                         set { base[pollTimeProp] = value; }
90                 }
91
92                 protected internal override ConfigurationPropertyCollection Properties {
93                         get { return properties; }
94                 }
95
96         }
97
98 }
99