Merge pull request #961 from ermshiperete/bug-xamarin-18118
[mono.git] / mcs / class / System.Windows.Forms.DataVisualization / System.Windows.Forms.DataVisualization.Charting / ChartSerializer.cs
1 // Authors:
2 // Francis Fisher (frankie@terrorise.me.uk)
3 //
4 // (C) Francis Fisher 2013
5 //
6 // Permission is hereby granted, free of charge, to any person obtaining
7 // a copy of this software and associated documentation files (the
8 // "Software"), to deal in the Software without restriction, including
9 // without limitation the rights to use, copy, modify, merge, publish,
10 // distribute, sublicense, and/or sell copies of the Software, and to
11 // permit persons to whom the Software is furnished to do so, subject to
12 // the following conditions:
13 // 
14 // The above copyright notice and this permission notice shall be
15 // included in all copies or substantial portions of the Software.
16 // 
17 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24
25 using System.IO;
26 using System.Xml;
27
28 namespace System.Windows.Forms.DataVisualization.Charting
29 {
30         public class ChartSerializer
31         {
32                 public SerializationContents Content { get; set; }
33                 public SerializationFormat Format { get; set; }
34                 public bool IsResetWhenLoading { get; set; }
35                 public bool IsTemplateMode { get; set; }
36                 public bool IsUnknownAttributeIgnored { get; set; }
37                 public string NonSerializableContent { get; set; }
38                 public string SerializableContent { get; set; }
39
40
41                 [MonoTODO]
42                 protected string GetContentString (SerializationContents content, bool serializable)
43                 {
44                         throw new NotImplementedException ();
45                 }
46
47                 [MonoTODO]
48                 public void Load (Stream stream)
49                 {
50                         throw new NotImplementedException ();
51                 }
52
53                 [MonoTODO]
54                 public void Load (string fileName)
55                 {
56                         throw new NotImplementedException ();
57                 }
58
59                 [MonoTODO]
60                 public void Load (TextReader reader)
61                 {
62                         throw new NotImplementedException ();
63                 }
64
65                 [MonoTODO]
66                 public void Load (XmlReader reader)
67                 {
68                         throw new NotImplementedException ();
69                 }
70
71                 [MonoTODO]
72                 public void Reset ()
73                 {
74                         throw new NotImplementedException ();
75                 }
76
77                 [MonoTODO]
78                 public void Save (Stream stream)
79                 {
80                         throw new NotImplementedException ();
81                 }
82                 [MonoTODO]
83                 public void Save (string fileName)
84                 {
85                         throw new NotImplementedException ();
86                 }
87
88                 [MonoTODO]
89                 public void Save (TextWriter writer)
90                 {
91                         throw new NotImplementedException ();
92                 }
93
94                 [MonoTODO]
95                 public void Save (XmlWriter writer)
96                 {
97                         throw new NotImplementedException ();
98                 }
99         }
100 }