HomeCSharpHow to Ping a Host or Machine in C# ?

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

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...