リモート マシンの IP を取得しようとしています。しかし、私のコードは IPv6 をリモートで収集できません。ローカルで実行すると、コードは正常に実行されます。以下は私のサンプルコードです
System.Net.IPHostEntry hostEntryComputer;
try
{
hostEntryComputer = System.Net.Dns.GetHostEntry(computerName);
foreach (System.Net.IPAddress addr in hostEntryComputer.AddressList)
{
string temp = addr.ToString();
Console.WriteLine("IP: " + temp);
}
}
catch(Exception ex)
{
Console.WriteLine(ex.Message);
}
任意の助けをいただければ幸いです。