SoapReflectionImporter.cs 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. //
  2. // System.Xml.Serialization.SoapReflectionImporter
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System.Reflection;
  10. using System.Xml;
  11. namespace System.Xml.Serialization {
  12. public class SoapReflectionImporter {
  13. #region Constructors
  14. [MonoTODO]
  15. public SoapReflectionImporter ()
  16. {
  17. throw new NotImplementedException ();
  18. }
  19. [MonoTODO]
  20. public SoapReflectionImporter (SoapAttributeOverrides attributeOverrides)
  21. {
  22. throw new NotImplementedException ();
  23. }
  24. [MonoTODO]
  25. public SoapReflectionImporter (string defaultNamespace)
  26. {
  27. throw new NotImplementedException ();
  28. }
  29. [MonoTODO]
  30. public SoapReflectionImporter (SoapAttributeOverrides attributeOverrides, string defaultNamespace)
  31. {
  32. throw new NotImplementedException ();
  33. }
  34. #endregion // Constructors
  35. #region Methods
  36. [MonoTODO]
  37. public XmlMembersMapping ImportMembersMapping (string elementName, string ns, XmlReflectionMember[] members)
  38. {
  39. throw new NotImplementedException ();
  40. }
  41. [MonoTODO]
  42. public XmlMembersMapping ImportMembersMapping (string elementName, string ns, XmlReflectionMember[] members, bool hasWrapperElement, bool writeAccessors)
  43. {
  44. throw new NotImplementedException ();
  45. }
  46. [MonoTODO]
  47. public XmlMembersMapping ImportMembersMapping (string elementName, string ns, XmlReflectionMember[] members, bool hasWrapperElement, bool writeAccessors, bool validate)
  48. {
  49. throw new NotImplementedException ();
  50. }
  51. [MonoTODO]
  52. public XmlTypeMapping ImportTypeMapping (Type type)
  53. {
  54. throw new NotImplementedException ();
  55. }
  56. [MonoTODO]
  57. public XmlTypeMapping ImportTypeMapping (Type type, string defaultNamespace)
  58. {
  59. throw new NotImplementedException ();
  60. }
  61. [MonoTODO]
  62. public void IncludeType (Type type)
  63. {
  64. throw new NotImplementedException ();
  65. }
  66. [MonoTODO]
  67. public void IncludeTypes (ICustomAttributeProvider provider)
  68. {
  69. throw new NotImplementedException ();
  70. }
  71. #endregion // Methods
  72. }
  73. }