我可以阻止Uri在WebRequest.Create中取消编码吗?

时间:2012-09-17 15:35:56

标签: c# httpwebrequest uri

代码本身并不复杂,它只是无法正常工作:

Uri uri = new Uri("https://www.google.com/webmasters/tools/feeds/sites/http%3A%2F%2Fwww.mydomain.co.uk%2F");
WebRequest.Create(uri);

我从服务器收到“错误请求”,经过多次挖掘,发现Uri正在变成

  

https://www.google.com/webmasters/tools/feeds/sites/http%3A//www.mydomain.co.uk/

这不是我要求的,所以它有一个呜咽

有办法阻止这个吗?

1 个答案:

答案 0 :(得分:5)

在此处找到答案:https://stackoverflow.com/a/10415482/159341

根据Microsoft Connect上的the bug report for this issue,此行为是设计使然,但您可以通过将以下内容添加到app.config或web.config文件来解决此问题:

<uri>
  <schemeSettings>
    <add name="http" genericUriParserOptions="DontUnescapePathDotsAndSlashes" />
  </schemeSettings>
</uri>

(由于WebRequest.Create(string)只委托给WebRequest.Create(Uri),无论您调用哪种方法,都需要使用此解决方法。)