2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.XML / System.Xml.Serialization / XmlSerializerNamespaces.cs
blob902d32b025dc6495846e304030aac6a669ea71e4
1 //
2 // XmlSerializerNamespaces.cs:
3 //
4 // Author:
5 // John Donagher (john@webmeta.com)
6 //
7 // (C) 2002 John Donagher
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;
32 using System.Xml;
33 using System.Collections;
34 using System.Collections.Specialized;
36 namespace System.Xml.Serialization
38 /// <summary>
39 /// Summary description for XmlSerializerNamespaces.
40 /// </summary>
41 public class XmlSerializerNamespaces
43 private ListDictionary namespaces;
45 public XmlSerializerNamespaces ()
47 namespaces = new ListDictionary ();
50 public XmlSerializerNamespaces(XmlQualifiedName[] namespaces)
51 : this()
53 foreach(XmlQualifiedName qname in namespaces)
55 this.namespaces[qname.Name] = qname;
59 public XmlSerializerNamespaces(XmlSerializerNamespaces namespaces)
60 : this(namespaces.ToArray())
63 public void Add (string prefix, string ns)
65 XmlQualifiedName qname = new XmlQualifiedName(prefix,ns);
66 namespaces[qname.Name] = qname;
69 public XmlQualifiedName[] ToArray ()
71 XmlQualifiedName[] array = new XmlQualifiedName[namespaces.Count];
72 namespaces.Values.CopyTo(array,0);
73 return array;
76 public int Count
78 get{ return namespaces.Count; }
81 internal string GetPrefix(string Ns)
83 foreach(string prefix in namespaces.Keys)
85 if(Ns == ((XmlQualifiedName)namespaces[prefix]).Namespace)
86 return prefix;
88 return null;
91 internal ListDictionary Namespaces
93 get {
94 return namespaces;