예제 #1
0
        public override void OnNority(Captcha captcha, byte[] binary, Action <string> call)
        {
            if (!captcha.Channel.ToUpper().StartsWith("T"))
            {
                call(null);
                return;
            }
            string code = Caffe.GetCaptcha(binary);

            if (code.Length == 0)
            {
                code = null;
            }
            call(code);
        }