代码本身并不复杂,它只是不能正常工作:
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/
这是不是我要求的,所以它具有whinge
有没有办法制止这种?