what I need;
api/GetCharacteristicsBulk?versionCode=RTUK8L1&language=2 go to this address.
var urlCode = selectedVersionCode + "&" + "language=" + language;
string url = QueryHelpers.AddQueryString($"{_urls.BaseUrl}{_urls.SapCharacteristicService.GetCharacteristicsBulk}", "versionCode", System.Web.HttpUtility.UrlDecode(urlCode));
when i run this; api/GetCharacteristicsBulk?RTUK8L1%262=RTUK8L1%25262. I get a result as above.
api/GetCharacteristicsBulk?versionCode=RTUK8L1&language=2 What should I do to get the output?
The following uses a string AddQueryString(String, IDictionary<String,String>) overload will give you the correct result.
Result
api/GetCharacteristicsBulk?versionCode=RTUK8L1&language=2