XmlTextWriter.cs 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. //
  2. // System.Xml.XmlTextWriter
  3. //
  4. // Author:
  5. // Kral Ferch <[email protected]>
  6. //
  7. // (C) 2002 Kral Ferch
  8. //
  9. using System;
  10. using System.IO;
  11. using System.Text;
  12. namespace System.Xml
  13. {
  14. public class XmlTextWriter : XmlWriter
  15. {
  16. #region Constructors
  17. [MonoTODO]
  18. public XmlTextWriter (TextWriter w) : base ()
  19. {
  20. throw new NotImplementedException ();
  21. }
  22. [MonoTODO]
  23. public XmlTextWriter (Stream w, Encoding encoding) : base ()
  24. {
  25. throw new NotImplementedException ();
  26. }
  27. [MonoTODO]
  28. public XmlTextWriter (string filename, Encoding encoding) : base ()
  29. {
  30. throw new NotImplementedException ();
  31. }
  32. #endregion
  33. #region Properties
  34. [MonoTODO]
  35. public Stream BaseStream {
  36. get { throw new NotImplementedException(); }
  37. }
  38. [MonoTODO]
  39. public Formatting Formatting {
  40. get { throw new NotImplementedException(); }
  41. set { throw new NotImplementedException(); }
  42. }
  43. [MonoTODO]
  44. public int Indentation {
  45. get { throw new NotImplementedException(); }
  46. set { throw new NotImplementedException(); }
  47. }
  48. [MonoTODO]
  49. public char IndentChar {
  50. get { throw new NotImplementedException(); }
  51. set { throw new NotImplementedException(); }
  52. }
  53. [MonoTODO]
  54. public bool Namespaces {
  55. get { throw new NotImplementedException(); }
  56. set { throw new NotImplementedException(); }
  57. }
  58. [MonoTODO]
  59. public char QuoteChar {
  60. get { throw new NotImplementedException(); }
  61. set { throw new NotImplementedException(); }
  62. }
  63. [MonoTODO]
  64. public override WriteState WriteState {
  65. get { throw new NotImplementedException(); }
  66. }
  67. [MonoTODO]
  68. public override string XmlLang {
  69. get { throw new NotImplementedException(); }
  70. }
  71. [MonoTODO]
  72. public override XmlSpace XmlSpace {
  73. get { throw new NotImplementedException(); }
  74. }
  75. #endregion
  76. #region Methods
  77. [MonoTODO]
  78. public override void Close ()
  79. {
  80. throw new NotImplementedException ();
  81. }
  82. [MonoTODO]
  83. public override void Flush ()
  84. {
  85. throw new NotImplementedException ();
  86. }
  87. [MonoTODO]
  88. public override string LookupPrefix (string ns)
  89. {
  90. throw new NotImplementedException ();
  91. }
  92. [MonoTODO]
  93. public override void WriteBase64 (byte[] buffer, int index, int count)
  94. {
  95. throw new NotImplementedException ();
  96. }
  97. [MonoTODO]
  98. public override void WriteBinHex (byte[] buffer, int index, int count)
  99. {
  100. throw new NotImplementedException ();
  101. }
  102. [MonoTODO]
  103. public override void WriteCData (string text)
  104. {
  105. throw new NotImplementedException ();
  106. }
  107. [MonoTODO]
  108. public override void WriteCharEntity (char ch)
  109. {
  110. throw new NotImplementedException ();
  111. }
  112. [MonoTODO]
  113. public override void WriteChars (char[] buffer, int index, int count)
  114. {
  115. throw new NotImplementedException ();
  116. }
  117. [MonoTODO]
  118. public override void WriteComment (string text)
  119. {
  120. throw new NotImplementedException ();
  121. }
  122. [MonoTODO]
  123. public override void WriteDocType (string name, string pubid, string sysid, string subset)
  124. {
  125. throw new NotImplementedException ();
  126. }
  127. [MonoTODO]
  128. public override void WriteEndAttribute ()
  129. {
  130. throw new NotImplementedException ();
  131. }
  132. [MonoTODO]
  133. public override void WriteEndDocument ()
  134. {
  135. throw new NotImplementedException ();
  136. }
  137. [MonoTODO]
  138. public override void WriteEndElement ()
  139. {
  140. throw new NotImplementedException ();
  141. }
  142. [MonoTODO]
  143. public override void WriteEntityRef (string name)
  144. {
  145. throw new NotImplementedException ();
  146. }
  147. [MonoTODO]
  148. public override void WriteFullEndElement ()
  149. {
  150. throw new NotImplementedException ();
  151. }
  152. [MonoTODO]
  153. public override void WriteName (string name)
  154. {
  155. throw new NotImplementedException ();
  156. }
  157. [MonoTODO]
  158. public override void WriteNmToken (string name)
  159. {
  160. throw new NotImplementedException ();
  161. }
  162. [MonoTODO]
  163. public override void WriteProcessingInstruction (string name, string text)
  164. {
  165. throw new NotImplementedException ();
  166. }
  167. [MonoTODO]
  168. public override void WriteQualifiedName (string localName, string ns)
  169. {
  170. throw new NotImplementedException ();
  171. }
  172. [MonoTODO]
  173. public override void WriteRaw (string data)
  174. {
  175. throw new NotImplementedException ();
  176. }
  177. [MonoTODO]
  178. public override void WriteRaw (char[] buffer, int index, int count)
  179. {
  180. throw new NotImplementedException ();
  181. }
  182. [MonoTODO]
  183. public override void WriteStartAttribute (string prefix, string localName, string ns)
  184. {
  185. throw new NotImplementedException ();
  186. }
  187. [MonoTODO]
  188. public override void WriteStartDocument ()
  189. {
  190. throw new NotImplementedException ();
  191. }
  192. [MonoTODO]
  193. public override void WriteStartDocument (bool standalone)
  194. {
  195. throw new NotImplementedException ();
  196. }
  197. [MonoTODO]
  198. public override void WriteStartElement (string prefix, string localName, string ns)
  199. {
  200. throw new NotImplementedException ();
  201. }
  202. [MonoTODO]
  203. public override void WriteString (string text)
  204. {
  205. throw new NotImplementedException ();
  206. }
  207. [MonoTODO]
  208. public override void WriteSurrogateCharEntity (char lowChar, char highChar)
  209. {
  210. throw new NotImplementedException ();
  211. }
  212. [MonoTODO]
  213. public override void WriteWhitespace (string ws)
  214. {
  215. throw new NotImplementedException ();
  216. }
  217. #endregion
  218. }
  219. }