You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IAsyncResume.AsyncWaitHandle.WaitOne always returns false from a Wait.
IAsyncResult ar = _client.BeginConnect(address, port, result => { }, null);
if (!ar.AsyncWaitHandle.WaitOne(TimeSpan.FromSeconds(10)))
{
// On windows phone we'll always get here.
}