Merge pull request #4621 from alexanderkyte/strdup_env
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / HttpModuleActionCollection.cs
1 //
2 // System.Web.Configuration.HttpModuleActionCollection
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
32 using System;
33 using System.Configuration;
34
35 namespace System.Web.Configuration
36 {
37         [ConfigurationCollection (typeof (HttpModuleAction), CollectionType = ConfigurationElementCollectionType.AddRemoveClearMap)]
38         public sealed class HttpModuleActionCollection : ConfigurationElementCollection
39         {
40                 static ConfigurationPropertyCollection properties;
41
42                 static HttpModuleActionCollection ()
43                 {
44                         properties = new ConfigurationPropertyCollection ();
45                 }
46
47                 public HttpModuleActionCollection ()
48                 {
49                 }
50                         
51                 public void Add (HttpModuleAction httpModule)
52                 {
53                         BaseAdd (httpModule);
54                 }
55
56                 public void Clear ()
57                 {
58                         BaseClear ();
59                 }
60
61                 protected override ConfigurationElement CreateNewElement ()
62                 {
63                         return new HttpModuleAction ();
64                 }
65
66                 protected override object GetElementKey (ConfigurationElement element)
67                 {
68                         return ((HttpModuleAction)element).Name;
69                 }
70
71                 public int IndexOf (HttpModuleAction action)
72                 {
73                         return BaseIndexOf (action);
74                 }
75
76                 public void Remove (string name)
77                 {
78                         BaseRemove (name);
79                 }
80
81                 public void Remove (HttpModuleAction action)
82                 {
83                         BaseRemove (action.Name);
84                 }
85
86                 public void RemoveAt (int index)
87                 {
88                         BaseRemoveAt (index);
89                 }
90
91                 protected override bool IsElementRemovable (ConfigurationElement element)
92                 {
93                         return base.IsElementRemovable (element);
94                 }
95
96                 protected internal override ConfigurationPropertyCollection Properties {
97                         get { return properties; }
98                 }
99
100                 public HttpModuleAction this[int index] {
101                         get { return (HttpModuleAction)BaseGet (index); }
102                         set { if (BaseGet (index) != null) BaseRemoveAt (index); BaseAdd (index, value); }
103                 }
104         }
105 }
106