Exemplo n.º 1
0
        public void SetValidationState(string response)
        {
            var validationState = _validationState as ValidationState;
            if (validationState == null)
                throw new ApplicationException("invalid validation state type");

            validationState.Init(response);
            _currentState = _validationState;
        }
Exemplo n.º 2
0
        public StateContext(ILogger logger, IProxyManager proxyManager, ICaptchaService captchaService)
        {
            _logger = logger;
            ProxyManager = proxyManager;
            CaptchaService = captchaService;

            _restartState = new RestartState(this);
            _validationState = new ValidationState(this);
        }
Exemplo n.º 3
0
 public void SetFinishState()
 {
     _currentState = null;
 }
Exemplo n.º 4
0
 public void SetRestartState()
 {
     _currentState = _restartState;
 }
Exemplo n.º 5
0
 public void SetFinishState()
 {
     _currentState = null;
 }
Exemplo n.º 6
0
 public void SetRestartState()
 {
     _currentState = _restartState;
 }