我正在编写一个应用程序,用于检索给定网络上所有计算机的名称和IP地址。这是为了在远程连接到计算机时使用的技术支持。我还在开发并且只在我自己的网络上进行测试,但是当我运行它时,我没有得到任何结果,这会显示在输出中。
A first chance exception of type 'System.Net.Sockets.SocketException' occurred in System.dll
我的代码如下:
public List<NetworkComputer> getComputers( string domain )
{
List<NetworkComputer> computers = new List<NetworkComputer>();
DirectoryEntry entry = new DirectoryEntry( domain );
DirectorySearcher searcher = new DirectorySearcher( entry );
searcher.Filter = ("(objectClass=computer)");
searcher.SizeLimit = int.MaxValue;
searcher.PageSize = int.MaxValue;
foreach( SearchResult result in searcher.FindAll() )
{
if( result.GetDirectoryEntry().Name.StartsWith( "CN=" ) )
{
IPAddress ipAddress = null;
ipAddress = Dns.GetHostAddresses( result.GetDirectoryEntry().Name.Remove( 0, "CN=".Length ) )[0];
computers.Add( new NetworkComputer( result.GetDirectoryEntry().Name.Remove( 0, "CN=".Length ), ipAddress ) );
}
}
return computers;
}
}
}
如果我在不尝试获取IP地址的情况下运行它,我会得到所有没有问题的计算机列表。这是导致我出现问题的IP地址。
答案 0 :(得分:1)
如果您将连接字符串设置为localhost,只需更改为&#34; 127.0.0.1&#34;并且错误将被删除。
答案 1 :(得分:0)
答案 2 :(得分:0)
就我而言,这个exe的另一个实例都已准备就绪。当我从任务管理器关闭它时,它就解决了。