2
0

XmlSchemaExporter.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // System.Xml.Serialization.XmlSchemaExporter
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System.Xml;
  10. namespace System.Xml.Serialization {
  11. public class XmlSchemaExporter {
  12. #region Fields
  13. XmlSchemas schemas;
  14. #endregion
  15. #region Constructors
  16. public XmlSchemaExporter (XmlSchemas schemas)
  17. {
  18. this.schemas = schemas;
  19. }
  20. #endregion // Constructors
  21. #region Methods
  22. [MonoTODO]
  23. public string ExportAnyType (string ns)
  24. {
  25. throw new NotImplementedException ();
  26. }
  27. [MonoTODO]
  28. public void ExportMembersMapping (XmlMembersMapping xmlMembersMapping)
  29. {
  30. throw new NotImplementedException ();
  31. }
  32. [MonoTODO]
  33. public XmlQualifiedName ExportTypeMapping (XmlMembersMapping xmlMembersMapping)
  34. {
  35. throw new NotImplementedException ();
  36. }
  37. [MonoTODO]
  38. public void ExportTypeMapping (XmlTypeMapping xmlTypeMapping)
  39. {
  40. throw new NotImplementedException ();
  41. }
  42. #endregion // Methods
  43. }
  44. }