C# Tutorials and offshore development in India
    Tutorials   Resources   Forum   Communities   Interview   Jobs   Projects   Offshore Development    
Silverlight Tutorials | Mentor | Code Converter | Articles | Code Factory | Computer Jokes | Members | Peer Appraisal | IT Companies | Bookmarks | Revenue Sharing |


Prizes & Awards
My Profile



Active Members
TodayLast 7 Days more...

New Feature: Community Sites: Create your own .NET community website and start earning from Google AdSense ! It's Free !




Check for internet connection


Posted Date: 29 Jun 2008    Resource Type: Code Snippets    Category: Network
Author: Richard McCutchenMember Level: Bronze    
Rating: Points: 10




///
/// Pings a variation of websites defined in a array and checks for connectivity.
///

/// True if a ping succeeded, False if otherwise.
///
public bool isConnectionAvailable()
{
string[] sitesList = { "www.google.com", "www.microsoft.com" , "www.psychocoder.net" };
Ping ping = new Ping();
PingOptions options = new PingOptions();
PingReply reply;
int notReturned = 0;
try
{
for (int i = 0; i <= sitesList.Length; i++)
{
reply = ping.Send(sitesList[i], 10);
if (reply.Status != IPStatus.Success)
{
notReturned += 1;
}
// Couldn't ping any of the hostnames.
if (notReturned == sitesList.Length)
{
//throw an exception
throw new Exception(@"There doesn't seem to be a network/internet connection.\r\nPlease contact your system administrator");
}
else
{
return true;
}
}
}
catch (Exception ex)
{
return false;
}
}




Responses


No responses found. Be the first to respond and make money from revenue sharing program.

Feedbacks      
Popular Tags   What are tags ?   Search Tags  
(No tags found.)

Post Feedback


This is a strictly moderated forum. Only approved messages will appear in the site. Please use 'Spell Check' in Google toolbar before you submit.
You must Sign In to post a response.
Next Resource: IP resolution
Previous Resource: To Get the Size of Directory
Return to Discussion Resource Index
Post New Resource
Category: Network


Post resources and earn money!
 
Related Resources



dotNet Slackers   BizTalk Adaptors    Web Design


Contact Us    Privacy Policy    Terms Of Use