예제 #1
0
파일: MainForm.cs 프로젝트: Tauders/AutoReg
 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);
 }
예제 #2
0
 public IntellectBoardReg(IAntiCaptcha antiCaptcha)
     : base(antiCaptcha)
 {
 }
예제 #3
0
파일: phpBBReg.cs 프로젝트: Tauders/AutoReg
 public phpBBReg(IAntiCaptcha antiCaptcha)
     : base(antiCaptcha)
 {
 }
예제 #4
0
파일: RegBase.cs 프로젝트: Tauders/AutoReg
 protected RegBase(IAntiCaptcha antiCaptcha)
 {
     this.antiCaptcha = antiCaptcha;
 }