Canguro.Model.Serializer.Deserializer.readFrames C# (CSharp) Method

readFrames() private method

Create nodes in XML for frame elements
private readFrames ( XmlNode node ) : void
node System.Xml.XmlNode
return void
        private void readFrames(XmlNode node)
        {
            //Dictionary<FrameSection, FrameSection> frameSectionCache = new Dictionary<FrameSection, FrameSection>();
            //// xml.WriteStartElement("Connectivity_-_Frame");
            foreach (XmlNode child in node.ChildNodes)
            {
                if ("Frame".Equals(child.Name))
                    readLines(child);
            }
        }
Deserializer