WinService、启动和网络
我正在用 .NET 编写一个 Windows 服务,该服务在 Windows 启动时执行一些网络操作。我注意到我的服务在网络启动之前启动。 如何检查网络连接?或者,更好的是,我如何检查 dhcp 是否给了我一个 IP?
I'm writing in .NET a windows service that, at windows startup, executes some network operations. I noticed that my service starts before the network is up.
How can I check the network connectivity? Or, better, how can I check if the dhcp gave me an ip?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一篇 CodeProject 文章,描述了一种检测网络状态的方法,包括跟踪网络可用性发生变化。
它构建在框架的 网络接口之上。 GetIsNetworkAvailable() 方法和 NetworkChange 类。
Here's a CodeProject article describing one method to detect the network status, including tracking when the network availability changes.
It is built on top of the framework's NetworkInterface.GetIsNetworkAvailable() method and the NetworkChange class.