/// <summary> /// Constructor /// </summary> public HlaObjectEventArgs() { ObjectInstance = new HlaObject(); RetractionHandle = new MessageRetraction(); SupplementalReflectInfo = new SupplementalReflectInfo(); SupplementalRemoveInfo = new SupplementalRemoveInfo(); }
/// <summary> /// Copy Constructor /// </summary> /// <param name="obj"></param> public HlaObject(HlaObject obj) : this() { Name = obj.Name; Handle = obj.Handle; Tag = obj.Tag; //RetractionHandle = obj.RetractionHandle; Attributes = obj.Attributes; Type = Type; }