merge -r 53370:58178
[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));
53                         enabledProp = new ConfigurationProperty ("enabled", typeof (bool), true);
54                         eventMappingsProp = new ConfigurationProperty ("eventMappings", typeof (EventMappingSettingsCollection));
55                         heartbeatIntervalProp = new ConfigurationProperty ("heartbeatInterval", typeof (TimeSpan), TimeSpan.FromSeconds (0));
56                         profilesProp = new ConfigurationProperty ("profiles", typeof (ProfileSettingsCollection));
57                         providersProp = new ConfigurationProperty ("providers", typeof (ProviderSettingsCollection));
58                         rulesProp = new ConfigurationProperty ("rules", typeof (RuleSettingsCollection));
59                         properties = new ConfigurationPropertyCollection ();
60
61                         properties.Add (bufferModesProp);
62                         properties.Add (enabledProp);
63                         properties.Add (eventMappingsProp);
64                         properties.Add (heartbeatIntervalProp);
65                         properties.Add (profilesProp);
66                         properties.Add (providersProp);
67                         properties.Add (rulesProp);
68                 }
69
70                 [ConfigurationProperty ("bufferModes")]
71                 public BufferModesCollection BufferModes {
72                         get { return (BufferModesCollection) base [bufferModesProp];}
73                 }
74
75                 [ConfigurationProperty ("enabled", DefaultValue = "True")]
76                 public bool Enabled {
77                         get { return (bool) base [enabledProp];}
78                         set { base[enabledProp] = value; }
79                 }
80
81                 [ConfigurationProperty ("eventMappings")]
82                 public EventMappingSettingsCollection EventMappings {
83                         get { return (EventMappingSettingsCollection) base [eventMappingsProp];}
84                 }
85
86                 [TypeConverter (typeof (TimeSpanSecondsConverter))]
87                 [TimeSpanValidator (MinValueString = "00:00:00", MaxValueString = "24.20:31:23")]
88                 [ConfigurationProperty ("heartbeatInterval", DefaultValue = "00:00:00")]
89                 public TimeSpan HeartbeatInterval {
90                         get { return (TimeSpan) base [heartbeatIntervalProp];}
91                         set { base[heartbeatIntervalProp] = value; }
92                 }
93
94                 [ConfigurationProperty ("profiles")]
95                 public ProfileSettingsCollection Profiles {
96                         get { return (ProfileSettingsCollection) base [profilesProp];}
97                 }
98
99                 [ConfigurationProperty ("providers")]
100                 public ProviderSettingsCollection Providers {
101                         get { return (ProviderSettingsCollection) base [providersProp];}
102                 }
103
104                 [ConfigurationProperty ("rules")]
105                 public RuleSettingsCollection Rules {
106                         get { return (RuleSettingsCollection) base [rulesProp];}
107                 }
108
109                 protected override ConfigurationPropertyCollection Properties {
110                         get { return properties; }
111                 }
112
113         }
114
115 }
116
117 #endif
118