| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- //
- // System.Xml.Serialization.SoapReflectionImporter
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Reflection;
- using System.Xml;
- namespace System.Xml.Serialization {
- public class SoapReflectionImporter {
- #region Constructors
- [MonoTODO]
- public SoapReflectionImporter ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SoapReflectionImporter (SoapAttributeOverrides attributeOverrides)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SoapReflectionImporter (string defaultNamespace)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SoapReflectionImporter (SoapAttributeOverrides attributeOverrides, string defaultNamespace)
- {
- throw new NotImplementedException ();
- }
- #endregion // Constructors
- #region Methods
- [MonoTODO]
- public XmlMembersMapping ImportMembersMapping (string elementName, string ns, XmlReflectionMember[] members)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public XmlMembersMapping ImportMembersMapping (string elementName, string ns, XmlReflectionMember[] members, bool hasWrapperElement, bool writeAccessors)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public XmlMembersMapping ImportMembersMapping (string elementName, string ns, XmlReflectionMember[] members, bool hasWrapperElement, bool writeAccessors, bool validate)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public XmlTypeMapping ImportTypeMapping (Type type)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public XmlTypeMapping ImportTypeMapping (Type type, string defaultNamespace)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void IncludeType (Type type)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void IncludeTypes (ICustomAttributeProvider provider)
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
|