XmlSerializer.cs 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. //
  2. // XmlSerializer.cs:
  3. //
  4. // Author:
  5. // John Donagher ([email protected])
  6. //
  7. // (C) 2002 John Donagher
  8. //
  9. using System.Xml.Serialization;
  10. using System.Xml;
  11. using System.IO;
  12. using System;
  13. namespace System.Xml.Serialization
  14. {
  15. /// <summary>
  16. /// Summary description for XmlSerializer.
  17. /// </summary>
  18. public class XmlSerializer
  19. {
  20. [MonoTODO]
  21. protected XmlSerializer ()
  22. {
  23. }
  24. [MonoTODO]
  25. public XmlSerializer (Type type)
  26. {
  27. }
  28. [MonoTODO]
  29. public XmlSerializer (XmlTypeMapping xmltypemapping)
  30. {
  31. }
  32. [MonoTODO]
  33. public XmlSerializer (Type type, string defaultNamespace)
  34. {
  35. }
  36. [MonoTODO]
  37. public XmlSerializer (Type type, Type[] extraTypes)
  38. {
  39. }
  40. [MonoTODO]
  41. public XmlSerializer (Type type, XmlAttributeOverrides overrides)
  42. {
  43. }
  44. [MonoTODO]
  45. public XmlSerializer (Type type, XmlRootAttribute root)
  46. {
  47. }
  48. [MonoTODO]
  49. public XmlSerializer (Type type, XmlAttributeOverrides overrides, Type[] extraTypes, XmlRootAttribute root, string defaultNamespace)
  50. {
  51. }
  52. [MonoTODO]
  53. public event XmlAttributeEventHandler UnknownAttribute;
  54. [MonoTODO]
  55. public event XmlElementEventHandler UnknownElement;
  56. [MonoTODO]
  57. public event XmlNodeEventHandler UnknownNode;
  58. [MonoTODO]
  59. public event UnreferencedObjectEventHandler UnreferencedObject;
  60. [MonoTODO]
  61. public virtual bool CanDeserialize (XmlReader xmlReader)
  62. {
  63. throw new NotImplementedException ();
  64. }
  65. [MonoTODO]
  66. protected virtual object Deserialize (XmlSerializationReader reader)
  67. {
  68. throw new NotImplementedException ();
  69. }
  70. [MonoTODO]
  71. public object Deserialize (Stream stream)
  72. {
  73. throw new NotImplementedException ();
  74. }
  75. [MonoTODO]
  76. public object Deserialize (TextReader textReader)
  77. {
  78. throw new NotImplementedException ();
  79. }
  80. [MonoTODO]
  81. public object Deserialize (XmlReader xmlReader)
  82. {
  83. throw new NotImplementedException ();
  84. }
  85. [MonoTODO]
  86. protected virtual void Serialize (object o, XmlSerializationWriter writer)
  87. {
  88. throw new NotImplementedException ();
  89. }
  90. [MonoTODO]
  91. public void Serialize (Stream stream, object o)
  92. {
  93. throw new NotImplementedException ();
  94. }
  95. [MonoTODO]
  96. public void Serialize (TextWriter textWriter, object o)
  97. {
  98. throw new NotImplementedException ();
  99. }
  100. [MonoTODO]
  101. public void Serialize (XmlWriter xmlWriter, object o)
  102. {
  103. throw new NotImplementedException ();
  104. }
  105. [MonoTODO]
  106. public void Serialize (Stream stream, object o, XmlSerializerNamespaces namespaces)
  107. {
  108. throw new NotImplementedException ();
  109. }
  110. [MonoTODO]
  111. public void Serialize (TextWriter textWriter, object o, XmlSerializerNamespaces namespaces)
  112. {
  113. throw new NotImplementedException ();
  114. }
  115. [MonoTODO]
  116. public void Serialize (XmlWriter xmlWriter, object o, XmlSerializerNamespaces namespaces)
  117. {
  118. throw new NotImplementedException ();
  119. }
  120. }
  121. }