Skip to content

Instantly share code, notes, and snippets.

@paulbatum
Created May 21, 2014 17:32
Show Gist options
  • Save paulbatum/82e5cb9165f40600f87d to your computer and use it in GitHub Desktop.
Save paulbatum/82e5cb9165f40600f87d to your computer and use it in GitHub Desktop.
while(true)
{
try
{
var url = "http://prime.paxsite.com";
var client = new HttpClient();
var response = await client.GetAsync(url);
if(response.IsSuccessStatusCode)
{
Process.Start(url);
}
}
catch { }
await Task.Delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment