GeometryGym.Ifc.IfcPhysicalQuantity.ParseXml C# (CSharp) 메소드

ParseXml() 개인적인 메소드

private ParseXml ( XmlElement xml ) : void
xml XmlElement
리턴 void
        internal override void ParseXml(XmlElement xml)
        {
            base.ParseXml(xml);
            if (xml.HasAttribute("Name"))
                Name = xml.Attributes["Name"].Value;
            if (xml.HasAttribute("Description"))
                Description = xml.Attributes["Description"].Value;
        }