vote up 3 vote down star
1

How can you get the FQDN of a local machine in C#?

flag

3 Answers

vote up 7 vote down check

NOTE: I think this solution only works in the .NET 2.0 (and above) frameworks.

using System;
using System.Net;

//...

public static string GetFQDN()
{
    string domainName = NetworkInformation.IPGlobalProperties.GetIPGlobalProperties().DomainName;
    string hostName = Dns.GetHostName();
    string fqdn = "";
    if (!hostName.Contains(domainName))
        fqdn = hostName + "." + domainName;
    else
        fqdn = hostName;

    return fqdn;
}
link|flag
vote up 3 vote down

A slight simplification of Miky D's code

    public static string GetLocalhostFqdn()
    {
        var ipProperties = IPGlobalProperties.GetIPGlobalProperties();
        return string.Format("{0}.{1}", ipProperties.HostName, ipProperties.DomainName);
    }
link|flag
vote up 0 vote down

Here it is in PowerShell, for the heck of it:

$ipProperties = [System.Net.NetworkInformation.IPGlobalProperties]::GetIPGlobalProperties()
"{0}.{1}" -f $ipProperties.HostName, $ipProperties.DomainName
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.