XmlC14NWriter.cs 3.1 KB

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