I have the following URL:
Creating System.Uri with the above URL:
Uri uri = new Uri(aboveURL)
removes the extra slash after "Download/http://". The debugger shows it as
Download/http:/citeseer.ist... .
The Uri in HttpWebRequest (which is created with the above URL) also removes
the extra slash. As a result, I get NameResolution exception.
The Uri is shown as
Creating System.Uri with the above URL:
Uri uri = new Uri(aboveURL)
removes the extra slash after "Download/http://". The debugger shows it as
Download/http:/citeseer.ist... .
The Uri in HttpWebRequest (which is created with the above URL) also removes
the extra slash. As a result, I get NameResolution exception.
The Uri is shown as
Comment