ユーザーの名前アドレス(www.ipchicken.comを参照)を表示したかったのですが、唯一見つけられるのがIPアドレスです。逆引きを試みましたが、いずれも動作しませんでした。リモート名アドレス(IPではない)を取得する
IPAddress ip = IPAddress.Parse(this.lblIp.Text);
string hostName = Dns.GetHostByAddress(ip).HostName;
this.lblHost.Text = hostName;
ただし、HostNameはIPアドレスと同じです。
私は何をする必要があるのですか?
ありがとうございました。 Gab。