merge -r 61110:61111
[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.ComponentModel;
33 using System.Configuration;
34
35 #if NET_2_0
36
37 namespace System.Web.Configuration {
38
39         public sealed class EventMappingSettings : ConfigurationElement
40         {
41                 static ConfigurationProperty endEventCodeProp;
42                 static ConfigurationProperty nameProp;
43                 static ConfigurationProperty startEventCodeProp;
44                 static ConfigurationProperty typeProp;
45                 static ConfigurationPropertyCollection properties;
46
47                 static EventMappingSettings ()
48                 {
49                         endEventCodeProp = new ConfigurationProperty ("endEventCode", typeof (int), Int32.MaxValue,
50                                                                       TypeDescriptor.GetConverter (typeof (int)),
51                                                                       PropertyHelper.IntFromZeroToMaxValidator,
52                                                                       ConfigurationPropertyOptions.None);
53                         nameProp = new ConfigurationProperty ("name", typeof (string), "",
54                                                               TypeDescriptor.GetConverter (typeof (string)),
55                                                               PropertyHelper.NonEmptyStringValidator,
56                                                               ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey);
57                         startEventCodeProp = new ConfigurationProperty ("startEventCode", typeof (int), 0,
58                                                                         TypeDescriptor.GetConverter (typeof (int)),
59                                                                         PropertyHelper.IntFromZeroToMaxValidator,
60                                                                         ConfigurationPropertyOptions.None);
61                         typeProp = new ConfigurationProperty ("type", typeof (string), "", ConfigurationPropertyOptions.IsRequired);
62                         properties = new ConfigurationPropertyCollection ();
63
64                         properties.Add (endEventCodeProp);
65                         properties.Add (nameProp);
66                         properties.Add (startEventCodeProp);
67                         properties.Add (typeProp);
68                 }
69
70                 internal EventMappingSettings ()
71                 {
72                 }
73
74                 public EventMappingSettings (string name, string type)
75                 {
76                         this.Name = name;
77                         this.Type = type;
78                 }
79
80                 public EventMappingSettings (string name, string type, int startEventCode, int endEventCode)
81                 {
82                         this.Name = name;
83                         this.Type = type;
84                         this.StartEventCode = startEventCode;
85                         this.EndEventCode = endEventCode;
86                 }
87
88                 [IntegerValidator (MinValue = 0, MaxValue = Int32.MaxValue)]
89                 [ConfigurationProperty ("endEventCode", DefaultValue = "2147483647")]
90                 public int EndEventCode {
91                         get { return (int) base [endEventCodeProp];}
92                         set { base[endEventCodeProp] = value; }
93                 }
94
95                 [ConfigurationProperty ("name", DefaultValue = "", Options = ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey)]
96                 // LAMESPEC: MS lists no validator here but provides one in Properties.
97                 public string Name {
98                         get { return (string) base [nameProp];}
99                         set { base[nameProp] = value; }
100                 }
101
102                 [IntegerValidator (MinValue = 0, MaxValue = Int32.MaxValue)]
103                 [ConfigurationProperty ("startEventCode", DefaultValue = "0")]
104                 public int StartEventCode {
105                         get { return (int) base [startEventCodeProp];}
106                         set { base[startEventCodeProp] = value; }
107                 }
108
109                 [ConfigurationProperty ("type", DefaultValue = "", Options = ConfigurationPropertyOptions.IsRequired)]
110                 public string Type {
111                         get { return (string) base [typeProp];}
112                         set { base[typeProp] = value; }
113                 }
114
115                 protected override ConfigurationPropertyCollection Properties {
116                         get { return properties; }
117                 }
118
119         }
120
121 }
122
123 #endif
124