0
As I bass and catch the String
contained in an online file on Windows Phone 8.1 SDK?
0
As I bass and catch the String
contained in an online file on Windows Phone 8.1 SDK?
1
You can do it like this:
private async Task<string> DownloadAndReadFile(string url)
{
HttpClient client = new HttpClient();
return await client.GetStringAsync(url);
}
Browser other questions tagged c# .net vb.net windows-phone windows-phone-8-1
You are not signed in. Login or sign up in order to post.
Talk more about this online file, is ftp, is an html page
– Roberto Araujo
It is an FTP file, but can be accessed via HTML.
– CypherPotato