GeometryGym.Ifc.IfcCoordinateReferenceSystem.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);
			string str = Name;
			if (!string.IsNullOrEmpty(str))
				obj["Name"] = str;
			str = Description;
			if (!string.IsNullOrEmpty(str))
				obj["Description"] = str;
			obj["GeodeticDatum"] = GeodeticDatum;
			str = VerticalDatum;
			if (!string.IsNullOrEmpty(str))
				obj["VerticalDatum"] = str;
		}
	}
IfcCoordinateReferenceSystem