.NET에서 컴퓨터 이름 가져오기
컴퓨터 이름을 검색하는 것은 .NET 애플리케이션에서 일반적인 작업입니다. 개발 중인 애플리케이션 유형에 따라 이를 수행하는 데 사용할 수 있는 방법이 여러 가지 있습니다.
Console 또는 WinForms 앱:
string computerName = System.Environment.MachineName;
웹 앱:
string computerName = HttpContext.Current.Server.MachineName;
정규화된 도메인 이름(FQDN) 가져오기:
string fqdn = System.Net.Dns.GetHostName();
System.Net.Dns.GetHostName()이 FQDN을 제공하지 않는 경우 및 필요한 경우 다음 리소스를 참조하세요. [C#/.NET에서 로컬 컴퓨터의 FQDN을 찾는 방법은 무엇입니까?](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 중국어 웹사이트의 기타 관련 기사를 참조하세요!