GeometryGym.Ifc.IfcPresentationLayerAssignment.setJSON C# (CSharp) Méthode

setJSON() protected méthode

protected setJSON ( Newtonsoft.Json.Linq.JObject obj, BaseClassIfc host, HashSet processed ) : void
obj Newtonsoft.Json.Linq.JObject
host BaseClassIfc
processed HashSet
Résultat void
        protected override void setJSON(JObject obj, BaseClassIfc host, HashSet<int> processed)
        {
            base.setJSON(obj, host, processed);
            setAttribute(obj, "Name", Name);
            setAttribute(obj, "Description", Description);
            //XmlElement element = xml.OwnerDocument.CreateElement("AssignedItems");
            //xml.AppendChild(element);
            //foreach (int item in mAssignedItems)
            //	element.AppendChild(mDatabase[item].GetXML(xml.OwnerDocument, "", this, processed));
            setAttribute(obj, "Identifier", Identifier);
        }
IfcPresentationLayerAssignment