How to Ping a Host or Machine in C# ?

There are times when you want to identify and detect the availability of a host . .NET provides the developers with the API that lets you ping the host .

How to Ping a Host or Machine in C# ?

Below is a sample code snippet demonstrating how to ping a machine in C# .

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.IO;
using System.Net;
namespace GinktageConsoleApp
{
    internal class Program
    {
        private static void Main(string[] args)
        {
            System.Net.NetworkInformation.Ping pingServices = new System.Net.NetworkInformation.Ping();
            System.Net.NetworkInformation.PingReply Output = pingServices.Send("www.Ginktage.com");
            Console.WriteLine("IPAddress : " + Output.Address);
            Console.WriteLine("TTL" + Output.Options.Ttl);
            Console.WriteLine("Status" + Output.Status);
            Console.ReadLine();
        } 
    }
    
}

1

Share:

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

C# Compiler Error CS0442 – ‘Property’: abstract properties cannot have private accessors Reason for the Error You’ll get this error...
This is a really simple one . Below is a simple example of an enum called “Designation” defined with the...
This blog post explain the usage of the Checked Block in .NET and how you can use them in Visual...