Check out example codes for "c# download string url". It will help you in understanding the concepts better.
Code Example 1
var result = string.Empty;
using (var webClient = new System.Net.WebClient())
{
result = webClient.DownloadString("http://some.url");
}
Learn ReactJs, React Native from akashmittal.com