**** Merged from MCS ****
[mono-project.git] / mcs / class / System / System.Net.Configuration / NetAuthenticationModuleHandler.cs
blobe9f79fab119c34d387d5f880c3068ca2b553b1d9
1 //
2 // System.Net.Configuration.NetAuthenticationModuleHandler
3 //
4 // Authors:
5 // Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2003 Ximian, Inc (http://www.ximian.com)
8 //
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.
31 using System.Collections;
32 using System.Configuration;
33 #if (XML_DEP)
34 using System.Xml;
35 #endif
37 namespace System.Net.Configuration
39 class NetAuthenticationModuleHandler : IConfigurationSectionHandler
41 #if (XML_DEP)
42 public virtual object Create (object parent, object configContext, XmlNode section)
44 if (section.Attributes != null && section.Attributes.Count != 0)
45 HandlersUtil.ThrowException ("Unrecognized attribute", section);
47 XmlNodeList httpHandlers = section.ChildNodes;
48 foreach (XmlNode child in httpHandlers) {
49 XmlNodeType ntype = child.NodeType;
50 if (ntype == XmlNodeType.Whitespace || ntype == XmlNodeType.Comment)
51 continue;
53 if (ntype != XmlNodeType.Element)
54 HandlersUtil.ThrowException ("Only elements allowed", child);
56 string name = child.Name;
57 if (name == "clear") {
58 if (child.Attributes != null && child.Attributes.Count != 0)
59 HandlersUtil.ThrowException ("Unrecognized attribute", child);
61 AuthenticationManager.Clear ();
62 continue;
65 string type = HandlersUtil.ExtractAttributeValue ("type", child);
66 if (child.Attributes != null && child.Attributes.Count != 0)
67 HandlersUtil.ThrowException ("Unrecognized attribute", child);
69 if (name == "add") {
70 AuthenticationManager.Register (CreateInstance (type, child));
71 continue;
74 if (name == "remove") {
75 AuthenticationManager.Unregister (CreateInstance (type, child));
76 continue;
79 HandlersUtil.ThrowException ("Unexpected element", child);
82 return AuthenticationManager.RegisteredModules;
85 static IAuthenticationModule CreateInstance (string typeName, XmlNode node)
87 IAuthenticationModule module = null;
89 try {
90 Type type = Type.GetType (typeName, true);
91 module = (IAuthenticationModule) Activator.CreateInstance (type);
92 } catch (Exception e) {
93 HandlersUtil.ThrowException (e.Message, node);
96 return module;
98 #endif