Check out example codes for "c# get url html". It will help you in understanding the concepts better.
Code Example 1
using System.Net;
using (WebClient web1 = new WebClient())
string data = web1.DownloadString("URL");
Console.WriteLine(data);
}
Learn ReactJs, React Native from akashmittal.com