2009-06-05 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / HealthMonitoringSection.cs
1 //
2 // System.Web.Configuration.HealthMonitoringSection
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.ComponentModel;
33 using System.Configuration;
34
35 #if NET_2_0
36
37 namespace System.Web.Configuration {
38
39         public sealed class HealthMonitoringSection : ConfigurationSection
40         {
41                 static ConfigurationProperty bufferModesProp;
42                 static ConfigurationProperty enabledProp;
43                 static ConfigurationProperty eventMappingsProp;
44                 static ConfigurationProperty heartbeatIntervalProp;
45                 static ConfigurationProperty profilesProp;
46                 static ConfigurationProperty providersProp;
47                 static ConfigurationProperty rulesProp;
48                 static ConfigurationPropertyCollection properties;
49
50                 static HealthMonitoringSection ()
51                 {
52                         bufferModesProp = new ConfigurationProperty ("bufferModes", typeof (BufferModesCollection), null,
53                                                                      null, PropertyHelper.DefaultValidator,
54                                                                      ConfigurationPropertyOptions.None);
55                         enabledProp = new ConfigurationProperty ("enabled", typeof (bool), true);
56                         eventMappingsProp = new ConfigurationProperty ("eventMappings", typeof (EventMappingSettingsCollection), null,
57                                                                        null, PropertyHelper.DefaultValidator,
58                                                                        ConfigurationPropertyOptions.None);
59                         heartbeatIntervalProp = new ConfigurationProperty ("heartbeatInterval", typeof (TimeSpan), TimeSpan.FromSeconds (0),
60                                                                            PropertyHelper.TimeSpanSecondsConverter,
61                                                                            new TimeSpanValidator (TimeSpan.Zero, new TimeSpan (24,30,31,23)),
62                                                                            ConfigurationPropertyOptions.None);
63                         profilesProp = new ConfigurationProperty ("profiles", typeof (ProfileSettingsCollection), null,
64                                                                   null, PropertyHelper.DefaultValidator,
65                                                                   ConfigurationPropertyOptions.None);
66                         providersProp = new ConfigurationProperty ("providers", typeof (ProviderSettingsCollection), null,
67                                                                    null, PropertyHelper.DefaultValidator,
68                                                                    ConfigurationPropertyOptions.None);
69                         rulesProp = new ConfigurationProperty ("rules", typeof (RuleSettingsCollection), null,
70                                                                null, PropertyHelper.DefaultValidator,
71                                                                ConfigurationPropertyOptions.None);
72                         properties = new ConfigurationPropertyCollection ();
73
74                         properties.Add (bufferModesProp);
75                         properties.Add (enabledProp);
76                         properties.Add (eventMappingsProp);
77                         properties.Add (heartbeatIntervalProp);
78                         properties.Add (profilesProp);
79                         properties.Add (providersProp);
80                         properties.Add (rulesProp);
81                 }
82
83                 [ConfigurationProperty ("bufferModes")]
84                 public BufferModesCollection BufferModes {
85                         get { return (BufferModesCollection) base [bufferModesProp];}
86                 }
87
88                 [ConfigurationProperty ("enabled", DefaultValue = "True")]
89                 public bool Enabled {
90                         get { return (bool) base [enabledProp];}
91                         set { base[enabledProp] = value; }
92                 }
93
94                 [ConfigurationProperty ("eventMappings")]
95                 public EventMappingSettingsCollection EventMappings {
96                         get { return (EventMappingSettingsCollection) base [eventMappingsProp];}
97                 }
98
99                 [TypeConverter (typeof (TimeSpanSecondsConverter))]
100                 [TimeSpanValidator (MinValueString = "00:00:00", MaxValueString = "24.20:31:23")]
101                 [ConfigurationProperty ("heartbeatInterval", DefaultValue = "00:00:00")]
102                 public TimeSpan HeartbeatInterval {
103                         get { return (TimeSpan) base [heartbeatIntervalProp];}
104                         set { base[heartbeatIntervalProp] = value; }
105                 }
106
107                 [ConfigurationProperty ("profiles")]
108                 public ProfileSettingsCollection Profiles {
109                         get { return (ProfileSettingsCollection) base [profilesProp];}
110                 }
111
112                 [ConfigurationProperty ("providers")]
113                 public ProviderSettingsCollection Providers {
114                         get { return (ProviderSettingsCollection) base [providersProp];}
115                 }
116
117                 [ConfigurationProperty ("rules")]
118                 public RuleSettingsCollection Rules {
119                         get { return (RuleSettingsCollection) base [rulesProp];}
120                 }
121
122                 protected override ConfigurationPropertyCollection Properties {
123                         get { return properties; }
124                 }
125
126         }
127
128 }
129
130 #endif
131