2020-01-23 16:04:15 +02:00

10 lines
181 B
Markdown

# C#
Below is an example of making a HTTP request to SITE_NAME from C#.
```csharp
using (var client = new System.Net.WebClient())
{
client.DownloadString("PING_URL");
}
```