using System.Threading.Tasks;
public static void Main()
var response = Client.Get();
Console.WriteLine(response.Result);
public static class Client {
public static async Task<bool> Get()
var client = new HttpClient();
var response = await client.GetAsync("https://www.berriart.com/");
return response.IsSuccessStatusCode;