在我的 Windows CE 应用程序中,我需要知道 PDA 是否已连接(在调用 Web 服务之前)。
我尝试使用 OpenNetCF ConnectionManager 类,但它始终指示“断开连接”状态。
ConnectionManager connectionManager = new ConnectionManager();
var wifi = ConnectionManager.ConnectionDetailItems.Where(x => x.ConnectionType == ConnectionType.NIC).FirstOrDefault();
connectionManager.Connect(wifi.SourceNetwork, true, ConnectionMode.Synchronous);
当我这样做时,connexionManager 状态始终等于“断开连接”,而静态成员“ConnectionManager.ConnectionDetailItems”包含一个带有我的网络信息的项目。
所以我想知道如何使用 ConnectionManager 来确定 Pad 是否已连接。
PS:我的网络无法上网