Get DNS Host Info : DNS « Network « C# / C Sharp






Get DNS Host Info

Get DNS Host Info
 

using System;
using System.Net;

public class GetDNSHostInfo
{
   public static void Main(string[] argv)
   {
      if (argv.Length != 1)
      {
       Console.WriteLine("Usage: GetDNSHostInfo hostname");
       return;
      }

      IPHostEntry results = Dns.GetHostByName(argv[0]);

      Console.WriteLine("Host name: {0}",
                       results.HostName);

      foreach(string alias in results.Aliases)
      {
         Console.WriteLine("Alias: {0}", alias);
      }
      foreach(IPAddress address in results.AddressList)
      {
         Console.WriteLine("Address: {0}",
                     address.ToString());
      }
   }
}

           
         
  








Related examples in the same category

1.DNS Reverse Lookup and Lookup
2.DNS Name Resolution
3.DNS Get Host By NameDNS Get Host By Name
4.Find DNS Servers
5.Get Resolve Info:DNSGet Resolve Info:DNS
6.Get DNS Address Info
7.DNS Address ResolverDNS Address Resolver
8.Find DNS Servers from Registry
9.Get Dns Server