2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.XML / System.Xml.Serialization / TypeTranslator.cs
index 932b2418b4390371884a80ae7a5e8c503945a935..fc71eeea981f378058c4908567497f5e0da23c23 100644 (file)
 // (C) 2003 Erik Lebel
 //
 
+//
+// 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;
 using System.Collections;
+using System.Globalization;
 
 namespace System.Xml.Serialization
 {
@@ -83,6 +105,8 @@ namespace System.Xml.Serialization
                        primitiveTypes.Add ("NOTATION", new TypeData (typeof (string), "NOTATION", true));
                        primitiveTypes.Add ("token", new TypeData (typeof (string), "token", true));
                        primitiveTypes.Add ("normalizedString", new TypeData (typeof (string), "normalizedString", true));
+                       primitiveTypes.Add ("anyURI", new TypeData (typeof (string), "anyURI", true));
+                       primitiveTypes.Add ("base64", new TypeData (typeof (byte[]), "base64", true));
                }
 
                public static TypeData GetTypeData (Type type)
@@ -122,6 +146,11 @@ namespace System.Xml.Serialization
                        return td;
                }
 
+               public static TypeData FindPrimitiveTypeData (string typeName)
+               {
+                       return (TypeData) primitiveTypes[typeName];
+               }
+
                public static TypeData GetDefaultPrimitiveTypeData (TypeData primType)
                {
                        // Returns the TypeData that is mapped by default to the clr type
@@ -148,7 +177,7 @@ namespace System.Xml.Serialization
 
                public static string GetArrayName (string elemName)
                {
-                       return "ArrayOf" + Char.ToUpper (elemName [0]) + elemName.Substring (1);
+                       return "ArrayOf" + Char.ToUpper (elemName [0], CultureInfo.InvariantCulture) + elemName.Substring (1);
                }
                
                public static string GetArrayName (string elemName, int dimensions)