1
我正在構建此方法的過程中,該方法僅返回網頁的內容。但是,我無法返回內容下載後觸發的事件,因此得到此錯誤:返回內部事件完成處理程序
因爲'System.Net.DownloadStringCompletedEventHandler'返回void,所以返回關鍵字後面不能有對象表達式。
如果我把事件之外的回報,它不會着火下載完成後,返回void並因此使這個沒用
string ScrapePage(string url)
{
WebClient GetArticleHTML = new WebClient();
GetArticleHTML.DownloadStringAsync(new Uri(url, UriKind.RelativeOrAbsolute));
GetArticleHTML.DownloadStringCompleted += (s, x) =>
{
return x.Result;
};
}