• Hello Guest! Welcome to ConsoleCrunch, to help support our site check out the premium upgrades HERE! to get exclusive access to our hidden content.
  • Unable to load portions of the website...
    If you use an ad blocker addon, you should disable it because it interferes with several elements of the site and blocks more than just adverts.
  • Read Rules Before Posting Post Virus Scans with every program.

[C#] Check Internet Connection

Elite_Modz

Active Poster
Retired Staff
Active Member
Console ID Poster
Code:
#region CheckInternetConnection
  public static bool CheckForInternetConnection()
  {
  try
  {
  using (var client = new WebClient())
  {
  using (var stream = client.OpenRead("http://google.com"))
  {
  return true;
  }
  }
  }
  catch
  {
  return false;
  }
  }
 
General chit-chat
Help Users
      Chat Bot: Cerberus__11 has posted a new reply in the thread "*NEW* Mod Menu Serendipity v1.0.4".
      Back
      Top