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