Click here to Skip to main content
15,884,177 members
Articles / Programming Languages / C#
Tip/Trick

How to PING Server in C#

Rate me:
Please Sign up or sign in to vote.
4.89/5 (13 votes)
18 Sep 2010CPOL 201.4K   18   6
It is always better to ping a server before actually calling the server from your client application. The Ping service will try to post a dummy request to the server which is used to be very small and tries to get the Response from the server. Generally if the server response is available, the server sends the response immediately.

Hence you can save a considerable amount of time building the Request body. You also never need to wait for so long time for Timeouts.

To Ping a Server, you can use:

MSIL
public static bool IsConnectedToInternet
{
    get
    {
        Uri url = new Uri("www.abhisheksur.com");
        string pingurl = string.Format("{0}", url.Host);
        string host = pingurl;
        bool result = false;
        Ping p = new Ping();
        try
        {
            PingReply reply = p.Send(host, 3000);
            if (reply.Status == IPStatus.Success)
                return true;
        }
        catch { }
        return result;
    }
}


The PING sends an ICMP (Internet Control Message Protocol) echo request to the server and waits to receive the echo back. If the value of Status is success, the PingReply is successful.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
President
India India
Did you like his post?

Oh, lets go a bit further to know him better.
Visit his Website : www.abhisheksur.com to know more about Abhishek.

Abhishek also authored a book on .NET 4.5 Features and recommends you to read it, you will learn a lot from it.
http://bit.ly/EXPERTCookBook

Basically he is from India, who loves to explore the .NET world. He loves to code and in his leisure you always find him talking about technical stuffs.

Working as a VP product of APPSeCONNECT, an integration platform of future, he does all sort of innovation around the product.

Have any problem? Write to him in his Forum.

You can also mail him directly to abhi2434@yahoo.com

Want a Coder like him for your project?
Drop him a mail to contact@abhisheksur.com

Visit His Blog

Dotnet Tricks and Tips



Dont forget to vote or share your comments about his Writing

Comments and Discussions

 
QuestionUri Pin
Member 1050009927-Jan-14 16:16
Member 1050009927-Jan-14 16:16 
QuestionMany servers block ping response for security Pin
wilson mar23-Jan-13 2:43
wilson mar23-Jan-13 2:43 
Generalhi how to change code if no ping exit app on start, thankyo... Pin
Member 806616025-Feb-12 13:10
Member 806616025-Feb-12 13:10 
hi
how to change code if no ping exit app on start,
thankyou
GeneralReason for my vote of 5 Good one abhishek Pin
thatraja29-Oct-10 21:10
professionalthatraja29-Oct-10 21:10 
GeneralSome optimizations... Pin
Ron Beyer13-Sep-10 11:22
professionalRon Beyer13-Sep-10 11:22 
GeneralRe: Some optimizations... Pin
Abhishek Sur13-Sep-10 12:14
professionalAbhishek Sur13-Sep-10 12:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.