C

Below is an example of making a HTTP request to VCU TS Healthchecks from C#.

using (var client = new System.Net.WebClient())
{
       client.DownloadString("https://healthcheck.ts.vcu.edu/ping/your-uuid-here");
}