Example #1
0
 public MainForm()
 {
     InitializeComponent();
     backgroundWorkerIB22.WorkerReportsProgress = true;
     backgroundWorkerPHPBB.WorkerReportsProgress = true;
     backgroundWorkerIB20.WorkerReportsProgress = true;
     _intellectBoard22AntiCaptcha = new IntellectBoard22AntiCaptcha();
     _intellectBoard20AntiCaptcha = new IntellectBoard20AntiCaptcha();
     _phpBBAntiCaptcha = new phpBBAntiCaptcha();
     _intellectBoard22Reg = new IntellectBoardReg(_intellectBoard22AntiCaptcha);
     _intellectBoard20Reg = new IntellectBoardReg(_intellectBoard20AntiCaptcha);
     _phpBbReg = new phpBBReg(_phpBBAntiCaptcha);
 }
Example #2
0
 public IntellectBoardReg(IAntiCaptcha antiCaptcha)
     : base(antiCaptcha)
 {
 }
Example #3
0
 public phpBBReg(IAntiCaptcha antiCaptcha)
     : base(antiCaptcha)
 {
 }
Example #4
0
 protected RegBase(IAntiCaptcha antiCaptcha)
 {
     this.antiCaptcha = antiCaptcha;
 }