forked from GithubBackups/healthchecks
183 B
183 B
C#
Below is an example of making an HTTP request to SITE_NAME from C#.
using (var client = new System.Net.WebClient())
{
client.DownloadString("PING_URL");
}