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); }
public FileFinder(Settings settings) { this.m_Settings = settings; this.m_AsyncTask = new AsyncTask(new AsyncTask.TaskFunction(this.ExecuteTask), "FileFinger Thread"); }