Exemplo n.º 1
0
 private CodeBaseWorker(CodeBase codeBase, CodeBaseOptions options, BackgroundWorker backgroundWorker)
 {
     _codeBase         = codeBase;
     _options          = options;
     _backgroundWorker = backgroundWorker;
 }
Exemplo n.º 2
0
        public IList <Hit> Execute(CodeBase codeBase)
        {
            ICodeBaseAction action = (ICodeBaseAction)Activator.CreateInstance(_type);

            return(action.Execute(codeBase));
        }
Exemplo n.º 3
0
 public IList <Hit> Execute(CodeBase codeBase)
 {
     Visit(codeBase);
     return(Hits);
 }