2020-12-28 14:06:54 +02:00

10 lines
183 B
Markdown

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