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