2
0

XmlSerializableServices.cs 717 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Xml;
  5. using System.Xml.Schema;
  6. using QName = System.Xml.XmlQualifiedName;
  7. namespace System.Runtime.Serialization
  8. {
  9. public static class XmlSerializableServices
  10. {
  11. static Dictionary<QName, XmlSchemaSet> defaultSchemas
  12. = new Dictionary<QName, XmlSchemaSet> ();
  13. public static void AddDefaultSchema (
  14. XmlSchemaSet schemas,
  15. QName typeQName)
  16. {
  17. throw new NotImplementedException ();
  18. }
  19. public static XmlNode [] ReadNodes (XmlReader xmlReader)
  20. {
  21. throw new NotImplementedException ();
  22. }
  23. public static void WriteNodes (XmlWriter xmlWriter,
  24. XmlNode [] nodes)
  25. {
  26. throw new NotImplementedException ();
  27. }
  28. }
  29. }