using System; using System.Diagnostics; using System.Runtime.Serialization; using System.Xml.Schema; using System.Xml.Serialization; namespace Netron.Diagramming.Core { // ---------------------------------------------------------------------- /// /// Complementary partial class related to (de)serialization. /// // ---------------------------------------------------------------------- [Serializable] public abstract partial class ConnectionBase : ISerializable, IXmlSerializable, IDeserializationCallback { #region Deserialization constructor // ------------------------------------------------------------------ /// /// Deserialization constructor /// /// The info. /// The context. // ------------------------------------------------------------------ protected ConnectionBase( SerializationInfo info, StreamingContext context) : base(info, context) { if (Tracing.BinaryDeserializationSwitch.Enabled) { Trace.WriteLine( "Deserializing the fields of 'ConnectionBase'."); } double version = info.GetDouble("ConnectionBaseVersion"); mTo = info.GetValue("To", typeof(Connector)) as Connector; mFrom = info.GetValue("From", typeof(Connector)) as Connector; if (mTo == null) { throw new InconsistencyException( "'To' connector deserialized to 'null'"); } if (mFrom == null) { throw new InconsistencyException( "'From' connector deserialized to 'null'"); } mTo.Parent = this; mFrom.Parent = this; } #endregion #region Serialization events /* [OnSerializing] void OnSerializing(StreamingContext context) { Trace.WriteLine("Starting to serializing the 'ConnectionBase' class..."); } [OnSerialized] void OnSerialized(StreamingContext context) { Trace.WriteLine("...serialization of 'ConnectionBase' finished"); } */ #endregion #region Deserialization events /* [OnDeserializing] void OnDeserializing(StreamingContext context) { Trace.Indent(); Trace.WriteLine("Starting deserializing the 'ConnectionBase' class..."); } [OnDeserialized] void OnDeserialized(StreamingContext context) { Trace.WriteLine("...deserialization of 'ConnectionBase' finished"); Trace.Unindent(); } */ #endregion #region Serialization // ------------------------------------------------------------------ /// /// Populates a with /// the data needed to serialize the target object. /// /// The to /// populate with data. /// The destination (see ) for /// this serialization. /// The caller /// does not have the required permission. // ------------------------------------------------------------------ public override void GetObjectData( SerializationInfo info, StreamingContext context) { if (Tracing.BinarySerializationSwitch.Enabled) { Trace.WriteLine( "Serializing the fields of 'ConnectionBase'."); } base.GetObjectData(info, context); info.AddValue("From", this.From, typeof(Connector)); info.AddValue("To", this.To, typeof(Connector)); info.AddValue("ConnectionBaseVersion", connectionBaseVersion); } #endregion #region Xml serialization /// /// This property is reserved, apply the to the class instead. /// /// /// An that describes the XML representation of the object that is produced by the method and consumed by the method. /// public override XmlSchema GetSchema() { throw new NotImplementedException("The method or operation is not implemented."); } /// /// Generates an object from its XML representation. /// /// The stream from which the object is deserialized. public override void ReadXml(System.Xml.XmlReader reader) { throw new NotImplementedException("The method or operation is not implemented."); } /// /// Converts an object into its XML representation. /// /// The stream to which the object is serialized. public override void WriteXml(System.Xml.XmlWriter writer) { throw new NotImplementedException("The method or operation is not implemented."); } #endregion #region IDeserializationCallback Members /// /// Runs when the entire object graph has been deserialized. /// /// The object that initiated the callback. The functionality for this parameter is not currently implemented. public override void OnDeserialization(object sender) { base.OnDeserialization(sender); if (Tracing.BinaryDeserializationSwitch.Enabled) Trace.WriteLine("IDeserializationCallback of 'ConnectionBase' called."); } #endregion } }