0

我在项目中遇到了问题。是关于墓碑的。我发现恢复需要很长时间,有时可以长达5分钟而没有出现错误!

我从来没有遇到过这样的问题,谁能告诉我为什么?

谢谢

4

1 回答 1

0

最后,我发现问题出在代码哪里,如果我删除它们,该应用程序运行良好。

DeviceNetworkInformation.ResolveHostNameAsync(
         new System.Net.DnsEndPoint("m.baidu.com", 80),
         new NameResolutionCallback(handle =>
         {
             NetworkInterfaceInfo info = handle.NetworkInterface;
             if (info != null)
             {
                 networkType = GetNetType(info);
             }
             else
                 networkType = NetType.NONE;

         }), null);
于 2012-08-29T02:07:46.467 回答