Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私の要件に従って、IISサーバーにアプリケーションを展開しました。ネットワーク上にあるホストされたマシンのIPアドレスを取得する必要があり、c#を使用してマシンのホスト名だけを持っています。
http://abc
abcがIISに展開されている場所は、ネットワーク上のどこにでもある可能性があります。c#でこのホスト名を使用してIPアドレスを取得することは可能ですか?
含む
using System.Net;
と使用
string url = "www.howtogeek.com"; IPAddress[] addresslist = Dns.GetHostAddresses(url);
次の回答も役立つ場合があります
C#で自分のIPアドレスを取得するには?