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
_client.Timeout = TimeSpan.FromSeconds(160);
var request = new HttpRequestMessage()
{
RequestUri = requestUri,
Method = HttpMethod.Get,
};
var response = await _client.SendAsync(request, ct).ConfigureAwait(false);
response.EnsureSuccessStatusCode(); var rawdata = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
During the request, I disconnect Wifi connection. In Android, an exception is thrown and I don't have to wait for the timeout to expire. However, in iOS, the connection keeps going on until timeout expires which is incorrect behavior.
The text was updated successfully, but these errors were encountered:
During the request, I disconnect Wifi connection. In Android, an exception is thrown and I don't have to wait for the timeout to expire. However, in iOS, the connection keeps going on until timeout expires which is incorrect behavior.
The text was updated successfully, but these errors were encountered: