我有一個問題:當我在BackgroundAgent中創建HttpWebRequest時,應用程序拋出InvalidCastException。 這個代碼在應用前景的任務,但不工作在BackgroundAgent:InvalidCastException HttpWebRequest c#
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(//InvalidCastException
new Uri(url));
request.BeginGetResponse(r => {
HttpWebRequest httprequest = (HttpWebRequest)r.AsyncState;
try {
全碼:http://pastebin.com/zyCHBQuP
請問您的網址以http或https? – Fox32
它以https開頭 – SevenDays
是的,他說的。 'url'的價值是什麼? –