Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Serialization/DocumentInformation.Serialization.cs @ 2768

Last change on this file since 2768 was 2768, checked in by mkommend, 14 years ago

added solution folders and sources for the netron library (ticket #867)

File size: 5.7 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using System.Drawing;
5using System.ComponentModel;
6using System.Runtime.Serialization;
7using System.Xml.Serialization;
8using System.Diagnostics;
9using System.Xml.Schema;
10namespace Netron.Diagramming.Core
11{
12    /// <summary>
13    /// Complementary partial class related to (de)serialization.
14    /// </summary>
15    [Serializable]
16    public partial class DocumentInformation : ISerializable, IXmlSerializable, IDeserializationCallback
17    {
18        #region Deserialization constructor
19        /// <summary>
20        /// Deserialization constructor
21        /// </summary>
22        /// <param name="info">The info.</param>
23        /// <param name="context">The context.</param>
24        protected DocumentInformation(SerializationInfo info, StreamingContext context)
25        {
26            if(Tracing.BinaryDeserializationSwitch.Enabled)
27                Trace.WriteLine("Deserializing the fields of 'DocumentInformation'.");
28
29            double version = info.GetDouble("DocumentInfoVersion");
30
31            mAuthor = info.GetString("Author");
32            mCreationDate = info.GetDateTime("CreationDate").ToString();
33            mDescription = info.GetString("Description");
34            mTitle = info.GetString("Title");
35        }
36        #endregion
37
38        #region Serialization events
39        /*
40        [OnSerializing]
41        void OnSerializing(StreamingContext context)
42        {
43            Trace.Indent();
44            Trace.WriteLine("Starting to serializing the 'DocumentInformation' class...");
45        }
46        [OnSerialized]
47        void OnSerialized(StreamingContext context)
48        {
49            Trace.WriteLine("...serialization of 'DocumentInformation' finished");
50            Trace.Unindent();
51        }
52        */
53        #endregion
54
55        #region Deserialization events
56        /*
57        [OnDeserializing]
58        void OnDeserializing(StreamingContext context)
59        {
60            Trace.Indent();
61            Trace.WriteLine("Starting deserializing the 'DocumentInformation' class...");
62        }
63        [OnDeserialized]
64        void OnDeserialized(StreamingContext context)
65         {
66             Trace.WriteLine("...deserialization of 'DocumentInformation' finished");
67             Trace.Unindent();
68         }
69        */
70        #endregion
71
72        #region Serialization
73
74        /// <summary>
75        /// Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> with the data needed to serialize the target object.
76        /// </summary>
77        /// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> to populate with data.</param>
78        /// <param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"></see>) for this serialization.</param>
79        /// <exception cref="T:System.Security.SecurityException">The caller does not have the required permission. </exception>
80        public void GetObjectData(SerializationInfo info, StreamingContext context)
81        {
82            if(Tracing.BinarySerializationSwitch.Enabled)
83                Trace.WriteLine("Serializing the fields of 'DocumentInformation'.");
84
85            info.AddValue("DocumentInfoVersion", documentInformationVersion);
86            info.AddValue("Author", this.Author);
87            info.AddValue("CreationDate", DateTime.Parse(this.CreationDate));
88            info.AddValue("Description", this.Description);
89            info.AddValue("Title", this.Title);           
90        }
91        #endregion
92
93        #region Xml serialization
94        /// <summary>
95        /// This property is reserved, apply the <see cref="T:System.Xml.Serialization.XmlSchemaProviderAttribute"></see> to the class instead.
96        /// </summary>
97        /// <returns>
98        /// 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.
99        /// </returns>
100        public XmlSchema GetSchema()
101        {
102            throw new NotImplementedException("The method or operation is not implemented.");
103        }
104
105        /// <summary>
106        /// Generates an object from its XML representation.
107        /// </summary>
108        /// <param name="reader">The <see cref="T:System.Xml.XmlReader"></see> stream from which the object is deserialized.</param>
109        public void ReadXml(System.Xml.XmlReader reader)
110        {
111            throw new NotImplementedException("The method or operation is not implemented.");
112        }
113
114        /// <summary>
115        /// Converts an object into its XML representation.
116        /// </summary>
117        /// <param name="writer">The <see cref="T:System.Xml.XmlWriter"></see> stream to which the object is serialized.</param>
118        public void WriteXml(System.Xml.XmlWriter writer)
119        {
120            throw new NotImplementedException("The method or operation is not implemented.");
121        }
122        #endregion
123
124        /// <summary>
125        /// Runs when the entire object graph has been deserialized.
126        /// </summary>
127        /// <param name="sender">The object that initiated the callback. The functionality for this parameter is not currently implemented.</param>
128        public void OnDeserialization(object sender)
129        {
130            if(Tracing.BinaryDeserializationSwitch.Enabled)
131                Trace.WriteLine("IDeserializationCallback of 'DocumentInformation' called.");
132        }
133    }
134}
Note: See TracBrowser for help on using the repository browser.