WebClient doesn't exist on Windows Phone 8.1? Downloading html of site

前端 未结 3 1812
攒了一身酷
攒了一身酷 2021-01-14 07:39

I want to get source code of some website.

I found this solution:

var html = System.Net.WebClient().DownloadString(siteUrl);

But Vi

3条回答
  •  青春惊慌失措
    2021-01-14 08:18

    WebClient is available for Windows Phone Silverlight 8.1 apps. Windows Phone Runtime apps use Windows.Web.Http.HttpClient.

    There is also a Portable HttpClient for .NET Framework and Windows Phone.

提交回复
热议问题