// // System.Xml.Serialization.SoapSchemaExporter // // Authors: // Gonzalo Paniagua Javier (gonzalo@ximian.com) // // (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 (); } } }