2007-07-04 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Xml.Core / DummySystemXmlCore.cs
1 using System;
2
3 namespace System.Xml
4 {
5         // note that they do not exist in SL
6         public class XmlSchemaDatatype
7         {
8                 public object ParseValue (string s, object o1, object o2)
9                 {
10                         throw new NotImplementedException ();
11                 }
12
13                 public string Normalize (string s)
14                 {
15                         throw new NotImplementedException ();
16                 }
17
18                 public XmlTokenizedType TokenizedType {
19                         get { throw new NotImplementedException (); }
20                 }
21
22                 public static XmlSchemaDatatype FromName (string name)
23                 {
24                         throw new NotImplementedException ();
25                 }
26         }
27
28         internal class XmlSchemaAttribute
29         {
30         }
31 }