UriBuilder.cs has problem when a query string parameter value has special characters like +
I found a workaround
in line 79
var result = queryString
.Aggregate("?", (current, pair) => current + (pair.Key + "=" + Uri.EscapeDataString(pair.Value) + "&"));
I found a workaround
in line 79
var result = queryString
.Aggregate("?", (current, pair) => current + (pair.Key + "=" + Uri.EscapeDataString(pair.Value) + "&"));