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

setJSON() protected méthode

protected setJSON ( JObject obj, BaseClassIfc host, HashSet processed ) : void
obj JObject
host BaseClassIfc
processed HashSet
Résultat void
		protected override void setJSON(JObject obj, BaseClassIfc host,  HashSet<int> processed)
		{
			base.setJSON(obj, host, processed);
			string contextIdentifier = ContextIdentifier;
			if (!string.IsNullOrEmpty(contextIdentifier))
				obj["ContextIdentifier"] = contextIdentifier;
			string contextType = ContextType;
			if (!string.IsNullOrEmpty(contextType))
				obj["ContextType"] = contextType;
		}
	}
IfcRepresentationContext