Merge pull request #2916 from ludovic-henry/fix-40306
[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
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                                                                       TypeDescriptor.GetConverter (typeof (int)),
50                                                                       PropertyHelper.IntFromZeroToMaxValidator,
51                                                                       ConfigurationPropertyOptions.None);
52                         nameProp = new ConfigurationProperty ("name", typeof (string), "",
53                                                               TypeDescriptor.GetConverter (typeof (string)),
54                                                               PropertyHelper.NonEmptyStringValidator,
55                                                               ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey);
56                         startEventCodeProp = new ConfigurationProperty ("startEventCode", typeof (int), 0,
57                                                                         TypeDescriptor.GetConverter (typeof (int)),
58                                                                         PropertyHelper.IntFromZeroToMaxValidator,
59                                                                         ConfigurationPropertyOptions.None);
60                         typeProp = new ConfigurationProperty ("type", typeof (string), "", ConfigurationPropertyOptions.IsRequired);
61                         properties = new ConfigurationPropertyCollection ();
62
63                         properties.Add (endEventCodeProp);
64                         properties.Add (nameProp);
65                         properties.Add (startEventCodeProp);
66                         properties.Add (typeProp);
67                 }
68
69                 internal EventMappingSettings ()
70                 {
71                 }
72
73                 public EventMappingSettings (string name, string type)
74                 {
75                         this.Name = name;
76                         this.Type = type;
77                 }
78
79                 public EventMappingSettings (string name, string type, int startEventCode, int endEventCode)
80                 {
81                         this.Name = name;
82                         this.Type = type;
83                         this.StartEventCode = startEventCode;
84                         this.EndEventCode = endEventCode;
85                 }
86
87                 [IntegerValidator (MinValue = 0, MaxValue = Int32.MaxValue)]
88                 [ConfigurationProperty ("endEventCode", DefaultValue = "2147483647")]
89                 public int EndEventCode {
90                         get { return (int) base [endEventCodeProp];}
91                         set { base[endEventCodeProp] = value; }
92                 }
93
94                 [ConfigurationProperty ("name", DefaultValue = "", Options = ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey)]
95                 // LAMESPEC: MS lists no validator here but provides one in Properties.
96                 public string Name {
97                         get { return (string) base [nameProp];}
98                         set { base[nameProp] = value; }
99                 }
100
101                 [IntegerValidator (MinValue = 0, MaxValue = Int32.MaxValue)]
102                 [ConfigurationProperty ("startEventCode", DefaultValue = "0")]
103                 public int StartEventCode {
104                         get { return (int) base [startEventCodeProp];}
105                         set { base[startEventCodeProp] = value; }
106                 }
107
108                 [ConfigurationProperty ("type", DefaultValue = "", Options = ConfigurationPropertyOptions.IsRequired)]
109                 public string Type {
110                         get { return (string) base [typeProp];}
111                         set { base[typeProp] = value; }
112                 }
113
114                 protected internal override ConfigurationPropertyCollection Properties {
115                         get { return properties; }
116                 }
117
118         }
119
120 }
121
122