Example #1
0
 public CWebDirScan()
 {
     config   = new CConfig();
     lstDicts = new List <string>();
 }
Example #2
0
 private void FormConfig_Load(object sender, EventArgs e)
 {
     config = new CConfig();
     nudHttpTimeout.Value = (decimal)config.getHttpTimeout();
     nudTasks.Value       = (decimal)config.getTasks();
 }
Example #3
0
 public CWebDirScan(string DictPath)
 {
     config = new CConfig();
     this.init(DictPath);
     lstDicts = new List <string>();
 }