merge -r 53370:58178
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / HttpModuleAction.cs
1 //
2 // System.Web.Configuration.HttpModuleAction
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 #if NET_2_0
32
33 using System;
34 using System.Configuration;
35
36 namespace System.Web.Configuration
37 {
38         public sealed class HttpModuleAction: ConfigurationElement
39         {
40                 static ConfigurationPropertyCollection properties;
41                 static ConfigurationProperty nameProp;
42                 static ConfigurationProperty typeProp;
43
44                 static HttpModuleAction ()
45                 {
46                         nameProp = new ConfigurationProperty ("name", typeof (string), "", ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey);
47                         typeProp = new ConfigurationProperty ("type", typeof (string), "", ConfigurationPropertyOptions.IsRequired);
48                         properties = new ConfigurationPropertyCollection ();
49                         properties.Add (nameProp);
50                         properties.Add (typeProp);
51                 }
52
53                 [MonoTODO]
54                 public HttpModuleAction (string name, string type)
55                 {
56                         this.Name = name;
57                         this.Type = type;
58                 }
59 #if notyet
60                 [MonoTODO]
61                 protected override ConfigurationElementProperty ElementProperty {
62                         get {
63                                 throw new NotImplementedException ();
64                         }
65                 }
66 #endif
67
68                 [ConfigurationProperty ("name", DefaultValue = "", Options = ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey)]
69                 [StringValidator (MinLength = 1)]
70                 public new string Name {
71                         get { return (string)base[nameProp]; }
72                         set { base[nameProp] = value; }
73                 }
74
75                 [ConfigurationProperty ("type", DefaultValue = "", Options = ConfigurationPropertyOptions.IsRequired)]
76                 public string Type {
77                         get { return (string)base[typeProp]; }
78                         set { base[typeProp] = value; }
79                 }
80
81                 protected override ConfigurationPropertyCollection Properties {
82                         get {
83                                 return properties;
84                         }
85                 }
86         }
87 }
88
89 #endif