监控域连接状态
当服务器在运行时未知时,是否有任何方法可以监视域的可用性? NetworkChange.NetworkAvailabilityChanged
不提供跨框架版本/操作系统的一致结果。
我正在处理域上的移动设备,这些移动设备将持续丢失并重新获得域连接;当这种情况发生时,我需要在代码中进行检测。
我尝试过 Google、Bing 和 MSDN,但一无所获。
Is there any way to monitor the availability of a domain, when the server is unknown at runtime? NetworkChange.NetworkAvailabilityChanged
, does not provide consistent results across framework versions/operating systems.
I'm dealing with mobile units on a domain, that are going to consistently lose and re-acquire domain connectivity; and I need to detect in code, when this happens.
I've tried Google, Bing, and MSDN and come up with nothing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用 p/Invoke NetWkstaUserGetInfo< /a>
System.Environment.UserDomainName 从环境变量中获取数据。
Try using p/Invoke NetWkstaUserGetInfo
System.Environment.UserDomainName gets data from environment variable.
您的意思是
System.Environment.UserDomainName
财产?You mean like the
System.Environment.UserDomainName
property?