Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJb Evain <jbevain@gmail.com>2008-04-13 19:07:10 +0400
committerJb Evain <jbevain@gmail.com>2008-04-13 19:07:10 +0400
commitaa70d6bf736950d9867fb86d2ba5222e6c5b7882 (patch)
treeedb641a2685eabc591386fb0796a570319e0b35a /mcs/class/System.XML/System.Xml.Schema
parente222075a8903e339cc0a6afd18439ac0cbf387e0 (diff)
parent963ccb4ef800bfbddada344cc3b3dd07eab135af (diff)
copy sys.xml dummy types here
svn path=/trunk/mcs/; revision=100571
Diffstat (limited to 'mcs/class/System.XML/System.Xml.Schema')
-rw-r--r--mcs/class/System.XML/System.Xml.Schema/XmlSchemaDatatype_2_1.cs35
1 files changed, 35 insertions, 0 deletions
diff --git a/mcs/class/System.XML/System.Xml.Schema/XmlSchemaDatatype_2_1.cs b/mcs/class/System.XML/System.Xml.Schema/XmlSchemaDatatype_2_1.cs
new file mode 100644
index 00000000000..b5410125f23
--- /dev/null
+++ b/mcs/class/System.XML/System.Xml.Schema/XmlSchemaDatatype_2_1.cs
@@ -0,0 +1,35 @@
+using System;
+
+#if NET_2_1
+
+namespace System.Xml
+{
+ // note that they do not exist in SL
+ public class XmlSchemaDatatype
+ {
+ public object ParseValue (string s, object o1, object o2)
+ {
+ throw new NotImplementedException ();
+ }
+
+ public string Normalize (string s)
+ {
+ throw new NotImplementedException ();
+ }
+
+ public XmlTokenizedType TokenizedType {
+ get { throw new NotImplementedException (); }
+ }
+
+ public static XmlSchemaDatatype FromName (string name)
+ {
+ throw new NotImplementedException ();
+ }
+ }
+
+ internal class XmlSchemaAttribute
+ {
+ }
+}
+
+#endif