检查PC是否连接到局域网
我想问两个问题,如果有人能回答我将不胜感激。
如何检查(使用C#)PC是否连接到LAN?
如何检查(使用 C#)我的电脑是否连接到 LAN
I want to ask 2 questions and I would be thankful if somebody can reply.
How can I check (using C#) whether the PC is connected to LAN or not?
How can I check (using C#) my PC is connected on LAN or not
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试
Try
您想使用 Ping 来检查 PC 是否连接到 LAN。这是一个示例:
要检查您自己的计算机是否已连接,您可以对您知道应该解析的地址执行相同的操作,例如域控制器。
You want to use Ping to check whether a PC is connected to the LAN. Here's a sample:
To check if you own machine was connected, you could do the same to an address you know should resolve like say the domain controller.
使用 System.Net.NetworkInformation 命名空间的 ping 工具。有关更多信息,请参阅此链接
Use
System.Net.NetworkInformation
namespace's ping facility. For more refer this link