| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- //
- // System.Xml.Serialization.SoapCodeExporter
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.CodeDom;
- namespace System.Xml.Serialization {
- public class SoapCodeExporter {
- #region Fields
- CodeNamespace codeNamespace;
- CodeCompileUnit codeCompileUnit;
- CodeAttributeDeclarationCollection includeMetadata;
- #endregion
- #region Constructors
- public SoapCodeExporter (CodeNamespace codeNamespace)
- {
- includeMetadata = new CodeAttributeDeclarationCollection ();
- this.codeNamespace = codeNamespace;
- }
- public SoapCodeExporter (CodeNamespace codeNamespace, CodeCompileUnit codeCompileUnit)
- : this (codeNamespace)
- {
- this.codeCompileUnit = codeCompileUnit;
- }
- #endregion // Constructors
- #region Properties
- public CodeAttributeDeclarationCollection IncludeMetadata {
- get { return includeMetadata; }
- }
-
- #endregion // Properties
- #region Methods
- [MonoTODO]
- public void AddMappingMetadata (CodeAttributeDeclarationCollection metadata, XmlMemberMapping member)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void AddMappingMetadata (CodeAttributeDeclarationCollection metadata, XmlMemberMapping member, bool forceUseMemberName)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void ExportMembersMapping (XmlMembersMapping xmlMembersMapping)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void ExportTypeMapping (XmlTypeMapping xmlTypeMapping)
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
|