XmlC14NWriter.cs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. #if NET_2_0
  2. using System;
  3. using System.IO;
  4. namespace System.Xml
  5. {
  6. [MonoTODO]
  7. public class XmlC14NWriter : XmlCanonicalWriter
  8. {
  9. bool include_comments;
  10. public XmlC14NWriter (Stream stream)
  11. {
  12. throw new NotImplementedException ();
  13. }
  14. public bool IncludeComments {
  15. get { return include_comments; }
  16. set {
  17. throw new NotImplementedException ();
  18. }
  19. }
  20. public override void Close ()
  21. {
  22. Flush ();
  23. }
  24. public override void Flush ()
  25. {
  26. throw new NotImplementedException ();
  27. }
  28. public virtual void SetOutput (Stream stream)
  29. {
  30. throw new NotImplementedException ();
  31. }
  32. public override void WriteBase64 (byte [] buffer, int index, int count)
  33. {
  34. throw new NotImplementedException ();
  35. }
  36. public override void WriteCharEntity (int ch)
  37. {
  38. throw new NotImplementedException ();
  39. }
  40. public override void WriteComment (string text)
  41. {
  42. throw new NotImplementedException ();
  43. }
  44. public override void WriteComment (byte [] data, int offset, int count)
  45. {
  46. throw new NotImplementedException ();
  47. }
  48. public override void WriteDeclaration ()
  49. {
  50. throw new NotImplementedException ();
  51. }
  52. public override void WriteEndAttribute ()
  53. {
  54. throw new NotImplementedException ();
  55. }
  56. public override void WriteEndElement (string prefix, string localName)
  57. {
  58. throw new NotImplementedException ();
  59. }
  60. public override void WriteEndElement (byte [] prefix, int offset1, int count1, byte [] localName, int offset2, int count2)
  61. {
  62. throw new NotImplementedException ();
  63. }
  64. public override void WriteEndStartElement (bool isEmpty)
  65. {
  66. throw new NotImplementedException ();
  67. }
  68. public override void WriteEscapedText (string text)
  69. {
  70. throw new NotImplementedException ();
  71. }
  72. public override void WriteEscapedText (byte [] text, int offset, int count)
  73. {
  74. throw new NotImplementedException ();
  75. }
  76. public override void WriteNode (XmlReader reader)
  77. {
  78. throw new NotImplementedException ();
  79. }
  80. public override void WriteStartAttribute (string prefix, string localName)
  81. {
  82. throw new NotImplementedException ();
  83. }
  84. public override void WriteStartAttribute (byte [] prefix, int offset1, int count1, byte [] localName, int offset2, int count2)
  85. {
  86. throw new NotImplementedException ();
  87. }
  88. public override void WriteStartElement (string prefix, string localName)
  89. {
  90. throw new NotImplementedException ();
  91. }
  92. public override void WriteStartElement (byte [] prefix, int offset1, int count1, byte [] localName, int offset2, int count2)
  93. {
  94. throw new NotImplementedException ();
  95. }
  96. public override void WriteText (string text)
  97. {
  98. throw new NotImplementedException ();
  99. }
  100. public override void WriteText (int ch)
  101. {
  102. throw new NotImplementedException ();
  103. }
  104. public override void WriteText (byte [] text, int offset, int count)
  105. {
  106. throw new NotImplementedException ();
  107. }
  108. public override void WriteXmlnsAttribute (
  109. string prefix, string namespaceUri)
  110. {
  111. throw new NotImplementedException ();
  112. }
  113. public override void WriteXmlnsAttribute (byte [] prefix, int offset1, int count1, byte [] namespaceUri, int offset2, int count2)
  114. {
  115. throw new NotImplementedException ();
  116. }
  117. }
  118. }
  119. #endif