AGS.Types.WorkspaceState.FromXml C# (CSharp) Method

FromXml() public method

public FromXml ( System node ) : void
node System
return void
        public void FromXml(System.Xml.XmlNode node)
        {
            _lastBuildConfiguration = AGS.Types.BuildConfiguration.Unknown;

            // Allow for earlier versions of the XML
            if (node != null && node.SelectSingleNode("WorkspaceState") != null)
                SerializeUtils.DeserializeFromXML(this, node);
        }