Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Serialization/LabelMaterial.Serialization.cs @ 15682

Last change on this file since 15682 was 4068, checked in by swagner, 14 years ago

Sorted usings and removed unused usings in entire solution (#1094)

File size: 4.4 KB
Line 
1using System;
2using System.Diagnostics;
3using System.Runtime.Serialization;
4using System.Xml.Schema;
5using System.Xml.Serialization;
6namespace Netron.Diagramming.Core {
7  /// <summary>
8  /// Complementary partial class related to (de)serialization.
9  /// </summary>
10  [Serializable]
11  public partial class LabelMaterial : ISerializable, IXmlSerializable, IDeserializationCallback {
12    #region Deserialization constructor
13    /// <summary>
14    /// Deserialization constructor
15    /// </summary>
16    /// <param name="info">The info.</param>
17    /// <param name="context">The context.</param>
18    protected LabelMaterial(SerializationInfo info, StreamingContext context)
19      : base(info, context) {
20      if (Tracing.BinaryDeserializationSwitch.Enabled)
21        Trace.WriteLine("Deserializing the fields of 'LabelMaterial'.");
22
23      double version = info.GetDouble("LabelMaterialVersion");
24
25      mText = info.GetString("Text");
26    }
27    #endregion
28
29    #region Serialization events
30    /*
31        [OnSerializing]
32        void OnSerializing(StreamingContext context)
33        {
34            Trace.Indent();
35            Trace.WriteLine("Starting to serializing the 'LabelMaterial' class...");
36        }
37        [OnSerialized]
38        void OnSerialized(StreamingContext context)
39        {
40            Trace.WriteLine("...serialization of 'LabelMaterial' finished");
41            Trace.Unindent();
42        }
43        */
44    #endregion
45
46    #region Deserialization events
47    /*
48        [OnDeserializing]     
49        void OnDeserializing(StreamingContext context)
50        {
51            Trace.Indent();
52            Trace.WriteLine("IDeserializationCallback of 'LabelMaterial' called.");
53        }
54        [OnDeserialized]
55        void OnDeserialized(StreamingContext context)
56         {
57             Trace.WriteLine("...deserialization of 'LabelMaterial' finished");
58             Trace.Unindent();
59         }
60       */
61    #endregion
62
63    #region Serialization
64    public override void GetObjectData(SerializationInfo info, StreamingContext context) {
65      if (Tracing.BinarySerializationSwitch.Enabled)
66        Trace.WriteLine("Serializing the fields of 'LabelMaterial'.");
67      base.GetObjectData(info, context);
68
69      info.AddValue("LabelMaterialVersion", labelMaterialVersion);
70      info.AddValue("Text", mText);
71    }
72    #endregion
73
74    #region Xml serialization
75    /// <summary>
76    /// This property is reserved, apply the <see cref="T:System.Xml.Serialization.XmlSchemaProviderAttribute"></see> to the class instead.
77    /// </summary>
78    /// <returns>
79    /// An <see cref="T:System.Xml.Schema.XmlSchema"></see> that describes the XML representation of the object that is produced by the <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)"></see> method and consumed by the <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)"></see> method.
80    /// </returns>
81    public override XmlSchema GetSchema() {
82      throw new NotImplementedException("The method or operation is not implemented.");
83    }
84
85    /// <summary>
86    /// Generates an object from its XML representation.
87    /// </summary>
88    /// <param name="reader">The <see cref="T:System.Xml.XmlReader"></see> stream from which the object is deserialized.</param>
89    public override void ReadXml(System.Xml.XmlReader reader) {
90      throw new NotImplementedException("The method or operation is not implemented.");
91    }
92
93    /// <summary>
94    /// Converts an object into its XML representation.
95    /// </summary>
96    /// <param name="writer">The <see cref="T:System.Xml.XmlWriter"></see> stream to which the object is serialized.</param>
97    public override void WriteXml(System.Xml.XmlWriter writer) {
98      throw new NotImplementedException("The method or operation is not implemented.");
99    }
100    #endregion
101
102
103
104    /// <summary>
105    /// Runs when the entire object graph has been deserialized.
106    /// </summary>
107    /// <param name="sender">The object that initiated the callback. The functionality for this parameter is not currently implemented.</param>
108    public override void OnDeserialization(object sender) {
109      base.OnDeserialization(sender);
110      if (Tracing.BinaryDeserializationSwitch.Enabled)
111        Trace.WriteLine("IDeserializationCallback of 'LabelMaterial' called.");
112
113
114    }
115  }
116}
Note: See TracBrowser for help on using the repository browser.