SoapSchemaExporter.cs 808 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // System.Xml.Serialization.SoapSchemaExporter
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (c) 2002 Ximian, Inc. (http://www.ximian.com)
  8. //
  9. using System;
  10. namespace System.Xml.Serialization
  11. {
  12. public class SoapSchemaExporter
  13. {
  14. [MonoTODO]
  15. public SoapSchemaExporter (XmlSchemas schemas)
  16. {
  17. throw new NotImplementedException ();
  18. }
  19. [MonoTODO]
  20. public void ExportMembersMapping (XmlMembersMapping xmlMembersMapping)
  21. {
  22. throw new NotImplementedException ();
  23. }
  24. [MonoTODO]
  25. public void ExportMembersMapping (XmlMembersMapping xmlMembersMapping,
  26. bool exportEnclosingType)
  27. {
  28. throw new NotImplementedException ();
  29. }
  30. [MonoTODO]
  31. public void ExportTypeMapping (XmlTypeMapping xmlTypeMapping)
  32. {
  33. throw new NotImplementedException ();
  34. }
  35. }
  36. }