class Https { public string GetWebPage( string url) { // set method to handle certificates ServicePointManager .ServerCertificateValidationCallback += TrustAllCertificates; // create a WebClient instance using ( WebClient webClient = new WebClient ()) { // get web page UTF8Encoding objUTF8 = new UTF8Encoding...