Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Transient.cs
1using System;
2using System.Net.Http;
4using System.Threading.Tasks;
5
7{
8 public static class Transient
9 {
13 public static bool IsTransient(Exception ex)
14 {
15 return ex is HttpRequestException
16 || ex is SocketException
17 || ex is TaskCanceledException
18 || ex is TimeoutException;
19 }
20 }
21}
22
static bool IsTransient(Exception ex)
Heuristic transient error classification for network-bound work.
Definition: Transient.cs:13