I encountered a problem in my project. It's about tombstone. I found out that it takes a long time to recover, sometimes it can be as long as 5 minutes with no error occuring!
I have never had a problem like that, can anyone tell me why?
Thanks
I encountered a problem in my project. It's about tombstone. I found out that it takes a long time to recover, sometimes it can be as long as 5 minutes with no error occuring!
I have never had a problem like that, can anyone tell me why?
Thanks
finally, I found where the problem is the code blow, if i remove them, the app works well.
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);