| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // System.Xml.Serialization.SoapSchemaExporter
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (c) 2002 Ximian, Inc. (http://www.ximian.com)
- //
- using System;
- namespace System.Xml.Serialization
- {
- public class SoapSchemaExporter
- {
- [MonoTODO]
- public SoapSchemaExporter (XmlSchemas schemas)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void ExportMembersMapping (XmlMembersMapping xmlMembersMapping)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void ExportMembersMapping (XmlMembersMapping xmlMembersMapping,
- bool exportEnclosingType)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void ExportTypeMapping (XmlTypeMapping xmlTypeMapping)
- {
- throw new NotImplementedException ();
- }
- }
- }
|