2005-11-13 Chris Toshok <toshok@ximian.com>
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / SqlCacheDependencyDatabase.cs
1 //
2 // System.Web.Configuration.SqlCacheDependencyDatabaseCollection
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 SqlCacheDependencyDatabase : ConfigurationElement
39         {
40                 static ConfigurationProperty connectionStringNameProp;
41                 static ConfigurationProperty nameProp;
42                 static ConfigurationProperty pollTimeProp;
43                 static ConfigurationPropertyCollection properties;
44
45                 static SqlCacheDependencyDatabase ()
46                 {
47                         connectionStringNameProp = new ConfigurationProperty ("connectionStringName", typeof (string), null, ConfigurationPropertyOptions.IsRequired);
48                         nameProp = new ConfigurationProperty ("name", typeof (string), null, ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey);
49                         pollTimeProp = new ConfigurationProperty ("pollTime", typeof (int), 60000);
50                         properties = new ConfigurationPropertyCollection ();
51
52                         properties.Add (connectionStringNameProp);
53                         properties.Add (nameProp);
54                         properties.Add (pollTimeProp);
55                 }
56
57                 internal SqlCacheDependencyDatabase ()
58                 {
59                 }
60
61                 public SqlCacheDependencyDatabase (string name, string connectionStringName)
62                 {
63                         this.Name = name;
64                         this.ConnectionStringName = name;
65                 }
66
67                 public SqlCacheDependencyDatabase (string name, string connectionStringName, int pollTime)
68                 {
69                         this.Name = name;
70                         this.ConnectionStringName = name;
71                         this.PollTime = pollTime;
72                 }
73
74                 [StringValidator (MinLength = 1)]
75                 [ConfigurationProperty ("connectionStringName", Options = ConfigurationPropertyOptions.IsRequired)]
76                 public string ConnectionStringName {
77                         get { return (string) base [connectionStringNameProp];}
78                         set { base[connectionStringNameProp] = value; }
79                 }
80
81 #if notyet
82                 protected override ConfigurationElementProperty ElementProperty {
83                         get { throw new NotImplementedException (); }
84                 }
85 #endif
86
87                 [StringValidator (MinLength = 1)]
88                 [ConfigurationProperty ("name", Options = ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey)]
89                 public string Name {
90                         get { return (string) base [nameProp];}
91                         set { base[nameProp] = value; }
92                 }
93
94                 [ConfigurationProperty ("pollTime", DefaultValue = "60000")]
95                 public int PollTime {
96                         get { return (int) base [pollTimeProp];}
97                         set { base[pollTimeProp] = value; }
98                 }
99
100                 protected override ConfigurationPropertyCollection Properties {
101                         get { return properties; }
102                 }
103
104         }
105
106 }
107
108 #endif
109