Related: how-do-i-use-webrequest-to-access-an-ssl-encrypted-site-using-https
How to send an HTTPS GET Request in C#?
Simple Get Request using HttpClient Class
using System.Net.Http; class Program { static void Main(string[] args) { HttpClient httpClient = new HttpClient(); var result = httpClient.GetAsync("https://www.google.com").Result; } }