0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-10 23:40:11 +00:00
healthchecks_healthchecks/templates/docs/csharp.md
2020-01-23 16:04:15 +02:00

181 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");
}