I am having a URL in below format abcd.com/xyz/pqr%2Fss/abc
I want this to be send to server as it is. When I build Uri using System.Uri it converts it to abcd.com/xyz/pqr/ss/abc and it fails as I don't have a URL with the specified path.
When I tried with double encoding (abcd.com/xyz/pqr%252Fss/abc) it send the Uri as it is but it fails as server side it is converted to (abcd.com/xyz/pqr%2Fss/abc)