GeometryGym.Ifc.IfcLibraryInformation.SetXML C# (CSharp) Méthode

SetXML() private méthode

private SetXML ( XmlElement xml, BaseClassIfc host, HashSet processed ) : void
xml XmlElement
host BaseClassIfc
processed HashSet
Résultat void
        internal override void SetXML(XmlElement xml, BaseClassIfc host, HashSet<int> processed)
        {
            base.SetXML(xml, host, processed);
            xml.SetAttribute("Name", Name);
            setAttribute(xml, "Version", Version);
            if (mPublisher > 0)
                xml.AppendChild(mDatabase[mPublisher].GetXML(xml.OwnerDocument, "Publisher", this, processed));
            //VersionDate
            setAttribute(xml, "Location", Location);
            setAttribute(xml, "Description", Description);
        }