GeometryGym.Ifc.IfcPropertySet.setJSON C# (CSharp) Method

setJSON() protected method

protected setJSON ( Newtonsoft.Json.Linq.JObject obj, BaseClassIfc host, HashSet processed ) : void
obj Newtonsoft.Json.Linq.JObject
host BaseClassIfc
processed HashSet
return void
        protected override void setJSON(JObject obj, BaseClassIfc host,  HashSet<int> processed)
        {
            base.setJSON(obj, host, processed);
            obj["HasProperties"] = new JArray(HasProperties.ConvertAll(x=>x.getJson(this,processed)));
        }