2020-07-17 17:21:10 +03:00

182 B

C#

Below is an example of making a HTTP request to SITE_NAME from C#.

using (var client = new System.Net.WebClient())
{
       client.DownloadString("PING_URL");
}