public OutputLocationSet(SerializationInfo info, StreamingContext context)
 {
     Location   = info.GetString(nameof(Location));
     TargetType = (QueryLogRecord.QueryReturnTarget)info.GetValue(nameof(TargetType), typeof(QueryLogRecord.QueryReturnTarget));
 }
 public OutputLocationSet(string locationIn,
                          QueryLogRecord.QueryReturnTarget targetTypeIn)
 {
     Location   = locationIn;
     TargetType = targetTypeIn;
 }