2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.XML / System.Xml / XmlQualifiedName.cs
index e61dd0aebde1f30e6285d374e0280a032c34fcbd..22857ff868fcc3e3e59f3bfb0538e90edc881af2 100644 (file)
@@ -8,10 +8,34 @@
 // Modified: 
 //             21st June 2002 : Ajay kumar Dwivedi (adwiv@yahoo.com)
 
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
 using System;
 
 namespace System.Xml
 {
+#if NET_2_0
+       [Serializable]
+#endif
        public class XmlQualifiedName
        {
                // Constructors         
@@ -30,7 +54,7 @@ namespace System.Xml
                {
                        this.name = (name == null) ? "" : name;
                        this.ns = (ns == null) ? "" : ns;
-                       this.hash = name.GetHashCode () ^ ns.GetHashCode ();
+                       this.hash = this.name.GetHashCode () ^ this.ns.GetHashCode ();
                }
 
                // Fields
@@ -84,6 +108,17 @@ namespace System.Xml
                                return ns + ":" + name;
                }
 
+               internal static XmlQualifiedName Parse (string name, IXmlNamespaceResolver resolver)
+               {
+                       int index = name.IndexOf (':');
+                       if (index < 0)
+                               return new XmlQualifiedName (name);
+                       string ns = resolver.LookupNamespace (name.Substring (0, index));
+                       if (ns == null)
+                               throw new ArgumentException ("Invalid qualified name.");
+                       return new XmlQualifiedName (name.Substring (index + 1), ns);
+               }
+
                // Operators
                public static bool operator == (XmlQualifiedName a, XmlQualifiedName b)
                {