如何找到我的机器在C#中完全合格的主机名? [英] How do I find the fully qualified hostname of my machine in C#?

查看:89
本文介绍了如何找到我的机器在C#中完全合格的主机名?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

例如:我想是这样abc.hyd.mycompany.com。我的要求是解析这个名字和初始化相应的服务。



 使用System.Net; 

Dns.GetHostName()//不返回完全合格的名称,它只是给了ABC


解决方案

您可能能够得到这样整个DNS字符串:

  System.Net.Dns.GetHostEntry()。主机名

我们不。有我的工作完全成熟的DNS名称,但它确实给我一个三级虚假的域名,而不是仅仅的主机名



编辑2011/03/17:改变注册成立通过下面的标记建议。


Ex : I want something like abc.hyd.mycompany.com. My requirement is to parse this name and initialize appropriate service.

using System.Net;

Dns.GetHostName() // doesn't return fully qualified name it just gives "abc" 

解决方案

You may be able to get the whole DNS string like this:

System.Net.Dns.GetHostEntry("").HostName

We don't have full fledged DNS names where I work, but it does give me a three level faux domain name instead of just the hostname.

Edit 2011/03/17: Incorporated changes suggested by mark below.

这篇关于如何找到我的机器在C#中完全合格的主机名?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆