I have a .NET 4 client app using HttpClient. When the _tokenServiceUrl does not correctly resolve via DNS (for example: a network change change occurs when a VPN goes up or down or when mobile devices lose connectivity in a dead spot) then an AggregateException gets thrown. I'm trying to catch that exception, but can't.
try
{
var response = _client.GetAsync(_tokenServiceUrl).Result;
response.EnsureSuccessStatusCode();
var token = response.Content.ReadAsAsync<string>().Result;
return token;
}
catch (AggregateException exception)
{
Disconnected(exception);
return string.Empty;
}
I've mucked around with adding a ContinueWith in order to trap the exception and handle it, but I never return. What can I do to kill the task, given such an exception?