dns

  1. DominusDRR

    Why can't I get the hostname of an ip on an LAN network?

    Hi. I have an application made in C# and Android. The application tries to get the hostname of an IP as follows: private string GetHostName(string ipAddress) { try { IPHostEntry entry = Dns.GetHostEntry(ipAddress); if (entry != null) { return entry.HostName...
Back
Top Bottom