XmlReflectionImporter.cs 1.9 KB

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