Пример #1
0
 public Settings()
 {
     this.SetupDefaultValues();
     this.m_AsyncWriteTask = new AsyncTask(new AsyncTask.TaskFunction(this.WriteTask), "Settings Write Thread");
 }
 public GetSolutionFilesThread(EnvDTE.DTE dte)
 {
     this.m_DTE       = dte;
     this.m_AsyncTask = new AsyncTask(new AsyncTask.TaskFunction(this.Execute), "GetSolutionFiles Thread", true);
 }
Пример #3
0
 public FileFinder(Settings settings)
 {
     this.m_Settings  = settings;
     this.m_AsyncTask = new AsyncTask(new AsyncTask.TaskFunction(this.ExecuteTask), "FileFinger Thread");
 }