2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System / System.Net.Configuration / WebRequestModuleHandler.cs
1 //
2 // System.Net.Configuration.WebRequestModuleHandler
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2003 Ximian, Inc (http://www.ximian.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.Collections;
32 using System.Configuration;
33 #if (XML_DEP)
34 using System.Xml;
35 #endif
36
37 namespace System.Net.Configuration
38 {
39         class WebRequestModuleHandler : IConfigurationSectionHandler
40         {
41 #if (XML_DEP)
42                 public virtual object Create (object parent, object configContext, XmlNode section)
43                 {
44                         if (section.Attributes != null && section.Attributes.Count != 0)
45                                 HandlersUtil.ThrowException ("Unrecognized attribute", section);
46
47                         XmlNodeList reqHandlers = section.ChildNodes;
48                         foreach (XmlNode child in reqHandlers) {
49                                 XmlNodeType ntype = child.NodeType;
50                                 if (ntype == XmlNodeType.Whitespace || ntype == XmlNodeType.Comment)
51                                         continue;
52
53                                 if (ntype != XmlNodeType.Element)
54                                         HandlersUtil.ThrowException ("Only elements allowed", child);
55                                 
56                                 string name = child.Name;
57                                 if (name == "clear") {
58                                         if (child.Attributes != null && child.Attributes.Count != 0)
59                                                 HandlersUtil.ThrowException ("Unrecognized attribute", child);
60
61                                         WebRequest.ClearPrefixes ();
62                                         continue;
63                                 }
64
65                                 string prefix = HandlersUtil.ExtractAttributeValue ("prefix", child);
66                                 if (name == "add") {
67                                         string type = HandlersUtil.ExtractAttributeValue ("type", child, false);
68                                         if (child.Attributes != null && child.Attributes.Count != 0)
69                                                 HandlersUtil.ThrowException ("Unrecognized attribute", child);
70
71                                         WebRequest.AddPrefix (prefix, type);
72                                         continue;
73                                 }
74
75                                 if (name == "remove") {
76                                         if (child.Attributes != null && child.Attributes.Count != 0)
77                                                 HandlersUtil.ThrowException ("Unrecognized attribute", child);
78
79                                         WebRequest.RemovePrefix (prefix);
80                                         continue;
81                                 }
82
83                                 HandlersUtil.ThrowException ("Unexpected element", child);
84                         }
85
86                         return null;
87                 }
88 #endif
89         }
90 }
91