2005-11-14 Chris Toshok <toshok@ximian.com>
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / EventMappingSettings.cs
1 //
2 // System.Web.Configuration.EventMappingSettings
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 EventMappingSettings : ConfigurationElement
39         {
40                 static ConfigurationProperty endEventCodeProp;
41                 static ConfigurationProperty nameProp;
42                 static ConfigurationProperty startEventCodeProp;
43                 static ConfigurationProperty typeProp;
44                 static ConfigurationPropertyCollection properties;
45
46                 static EventMappingSettings ()
47                 {
48                         endEventCodeProp = new ConfigurationProperty ("endEventCode", typeof (int), Int32.MaxValue);
49                         nameProp = new ConfigurationProperty ("name", typeof (string), "", ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey);
50                         startEventCodeProp = new ConfigurationProperty ("startEventCode", typeof (int), 0);
51                         typeProp = new ConfigurationProperty ("type", typeof (string), "", ConfigurationPropertyOptions.IsRequired);
52                         properties = new ConfigurationPropertyCollection ();
53
54                         properties.Add (endEventCodeProp);
55                         properties.Add (nameProp);
56                         properties.Add (startEventCodeProp);
57                         properties.Add (typeProp);
58                 }
59
60                 public EventMappingSettings (string name, string type)
61                 {
62                         this.Name = name;
63                         this.Type = type;
64                 }
65
66                 public EventMappingSettings (string name, string type, int startEventCode, int endEventCode)
67                 {
68                         this.Name = name;
69                         this.Type = type;
70                         this.StartEventCode = startEventCode;
71                         this.EndEventCode = endEventCode;
72                 }
73
74                 [IntegerValidator (MinValue = 0, MaxValue = Int32.MaxValue)]
75                 [ConfigurationProperty ("endEventCode", DefaultValue = "2147483647")]
76                 public int EndEventCode {
77                         get { return (int) base [endEventCodeProp];}
78                         set { base[endEventCodeProp] = value; }
79                 }
80
81                 [ConfigurationProperty ("name", DefaultValue = "", Options = ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey)]
82                 public string Name {
83                         get { return (string) base [nameProp];}
84                         set { base[nameProp] = value; }
85                 }
86
87                 [IntegerValidator (MinValue = 0, MaxValue = Int32.MaxValue)]
88                 [ConfigurationProperty ("startEventCode", DefaultValue = "0")]
89                 public int StartEventCode {
90                         get { return (int) base [startEventCodeProp];}
91                         set { base[startEventCodeProp] = value; }
92                 }
93
94                 [ConfigurationProperty ("type", DefaultValue = "", Options = ConfigurationPropertyOptions.IsRequired)]
95                 public string Type {
96                         get { return (string) base [typeProp];}
97                         set { base[typeProp] = value; }
98                 }
99
100                 protected override ConfigurationPropertyCollection Properties {
101                         get { return properties; }
102                 }
103
104         }
105
106 }
107
108 #endif
109