public OHInfo(object obj, OHTarget target) { _obj = obj; Target = target; if (obj != null) { ObjectType = obj.GetType(); } TimeStamp = DateTime.Now; //User = "******"; InspectObject(_obj.GetType()); }
public OHInfo(Type objType, OHTarget target) { ObjectType = objType; Target = target; InspectObject(objType); }
public OHInfo(object obj, string user, OHTarget target) : this(obj, target) { User = user; }