在 .NET 中获取计算机名称
检索计算机名称是 .NET 应用程序中的一项常见任务。有多种方法可以实现此目的,具体取决于您正在开发的应用程序的类型。
控制台或 WinForms 应用程序:
string computerName = System.Environment.MachineName;
网页app:
string computerName = HttpContext.Current.Server.MachineName;
获取完全合格域名 (FQDN):
string fqdn = System.Net.Dns.GetHostName();
如果 System.Net.Dns.GetHostName() 未提供 FQDN 而您需要可以参考这个资源:[How to find FQDN of local machine in C#/.NET?](https://stackoverflow.com/questions/854213/how-to-find-fqdn-of-local-machine-in -c-net)
有关更多见解,请查看本文:[SystemInformation.ComputerName、Environment.MachineName 和Net.Dns.GetHostName](https://codereview.stackexchange.com/questions/37366/difference- Between-systeminformation-computername-environment-machinenam)。
以上是如何在.NET中获取计算机名和FQDN?的详细内容。更多信息请关注PHP中文网其他相关文章!