DummySystemXmlCore.cs 557 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. namespace System.Xml
  3. {
  4. // note that they do not exist in SL
  5. public class XmlSchemaDatatype
  6. {
  7. public object ParseValue (string s, object o1, object o2)
  8. {
  9. throw new NotImplementedException ();
  10. }
  11. public string Normalize (string s)
  12. {
  13. throw new NotImplementedException ();
  14. }
  15. public XmlTokenizedType TokenizedType {
  16. get { throw new NotImplementedException (); }
  17. }
  18. public static XmlSchemaDatatype FromName (string name)
  19. {
  20. throw new NotImplementedException ();
  21. }
  22. }
  23. internal class XmlSchemaAttribute
  24. {
  25. }
  26. }