CircuitState
Describes the possible states the circuit of a CircuitBreaker may be in.
namespace Polly.CircuitBreaker
{
public enum CircuitState
{
Closed,
Open,
HalfOpen,
Isolated
}
}