New test.
[mono.git] / mcs / class / System.Xml.Serialization / System.Xml.Serialization / XmlSerializer.cs
1 //
2 // XmlSerializer.cs
3 //
4 // Authors:
5 //   Rolf Bjarne Kvinge (RKvinge@novell.com)
6 //
7 // Copyright (C) 2010 Novell, Inc (http://www.novell.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 //
30 // This class is just a stub of the same class in System.Xml/System.Xml.Serialization
31 //
32
33 using System;
34 using System.IO;
35 namespace System.Xml.Serialization {
36         public class XmlSerializer {
37                 public XmlSerializer ()
38                 {
39                         throw new NotImplementedException ();
40                 }
41                 public XmlSerializer (Type type)
42                 {
43                         throw new NotImplementedException ();
44                 }
45                 public XmlSerializer (XmlTypeMapping xmlTYpeMapping)
46                 {
47                         throw new NotImplementedException ();
48                 }
49                 public XmlSerializer (Type type, Type [] extraTypes)
50                 {
51                         throw new NotImplementedException ();
52                 }
53                 public XmlSerializer (Type type, string defaultNamespace)
54                 {
55                         throw new NotImplementedException ();
56                 }
57                 public XmlSerializer (Type type, XmlAttributeOverrides overrides)
58                 {
59                         throw new NotImplementedException ();
60                 }
61                 public XmlSerializer (Type type, XmlRootAttribute root)
62                 {
63                         throw new NotImplementedException ();
64                 }
65                 public XmlSerializer (Type type, XmlAttributeOverrides overrides, Type[] extraTypes, XmlRootAttribute root, string defaultNamespace)
66                 {
67                         throw new NotImplementedException ();
68                 }
69                 public XmlSerializer (Type type, XmlAttributeOverrides overrides, Type[] extraTypes, XmlRootAttribute root, string defaultNamespace, object location, object evidence)
70                 {
71                         throw new NotImplementedException ();
72                 }
73                 public bool CanDeserializer (XmlReader xmlReader)
74                 {
75                         throw new NotImplementedException ();
76                 }
77                 public XmlSerializationReader CreateReader ()
78                 {
79                         throw new NotImplementedException ();
80                 }
81                 public XmlSerializationWriter CreateWriter ()
82                 {
83                         throw new NotImplementedException ();
84                 }
85                 public object Deserialize (Stream stream)
86                 {
87                         throw new NotImplementedException ();
88                 }
89                 public object Deserialize (XmlSerializationReader reader)
90                 {
91                         throw new NotImplementedException ();
92                 }
93                 public object Deserialize (TextReader textReader)
94                 {
95                         throw new NotImplementedException ();
96                 }
97                 public object Deserialize (XmlReader xmlReader)
98                 {
99                         throw new NotImplementedException ();
100                 }
101                 public XmlSerializer [] FromMappings (XmlMapping [] mappings)
102                 {
103                         throw new NotImplementedException ();
104                 }
105                 public XmlSerializer [] FromMappings (XmlMapping [] mappings, Type type)
106                 {
107                         throw new NotImplementedException ();
108                 }
109                 public XmlSerializer [] FromTypes (Type [] types)
110                 {
111                         throw new NotImplementedException ();
112                 }
113                 protected virtual void Serialize (object o, XmlSerializationWriter writer)
114                 {
115                         throw new NotImplementedException ();
116                 }
117                 public void Serialize (Stream stream, object o)
118                 {
119                         throw new NotImplementedException ();
120                 }
121                 public void Serialize (TextWriter textWriter, object o)
122                 {
123                         throw new NotImplementedException ();
124                 }
125                 public void Serialize (XmlWriter xmlWriter, object o)
126                 {
127                         throw new NotImplementedException ();
128                 }
129                 public void Serialize (TextWriter textWriter, object o, XmlSerializerNamespaces namespaces)
130                 {
131                         throw new NotImplementedException ();
132                 }
133                 public void Serialize (XmlWriter xmlWriter, object o, XmlSerializerNamespaces namespaces)
134                 {
135                         throw new NotImplementedException ();
136                 }
137                 public void Serialize (Stream stream, object o, XmlSerializerNamespaces namespaces)
138                 {
139                         throw new NotImplementedException ();
140                 }
141         }
142 }