ChartSerializer.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. // Authors:
  2. // Francis Fisher ([email protected])
  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. using System.IO;
  25. using System.Xml;
  26. namespace System.Windows.Forms.DataVisualization.Charting
  27. {
  28. public class ChartSerializer
  29. {
  30. public SerializationContents Content { get; set; }
  31. public SerializationFormat Format { get; set; }
  32. public bool IsResetWhenLoading { get; set; }
  33. public bool IsTemplateMode { get; set; }
  34. public bool IsUnknownAttributeIgnored { get; set; }
  35. public string NonSerializableContent { get; set; }
  36. public string SerializableContent { get; set; }
  37. [MonoTODO]
  38. protected string GetContentString (SerializationContents content, bool serializable)
  39. {
  40. throw new NotImplementedException ();
  41. }
  42. [MonoTODO]
  43. public void Load (Stream stream)
  44. {
  45. throw new NotImplementedException ();
  46. }
  47. [MonoTODO]
  48. public void Load (string fileName)
  49. {
  50. throw new NotImplementedException ();
  51. }
  52. [MonoTODO]
  53. public void Load (TextReader reader)
  54. {
  55. throw new NotImplementedException ();
  56. }
  57. [MonoTODO]
  58. public void Load (XmlReader reader)
  59. {
  60. throw new NotImplementedException ();
  61. }
  62. [MonoTODO]
  63. public void Reset ()
  64. {
  65. throw new NotImplementedException ();
  66. }
  67. [MonoTODO]
  68. public void Save (Stream stream)
  69. {
  70. throw new NotImplementedException ();
  71. }
  72. [MonoTODO]
  73. public void Save (string fileName)
  74. {
  75. throw new NotImplementedException ();
  76. }
  77. [MonoTODO]
  78. public void Save (TextWriter writer)
  79. {
  80. throw new NotImplementedException ();
  81. }
  82. [MonoTODO]
  83. public void Save (XmlWriter writer)
  84. {
  85. throw new NotImplementedException ();
  86. }
  87. }
  88. }