コード例 #1
0
ファイル: Settings.cs プロジェクト: xiaoxiyouran/VSAnything
 public Settings()
 {
     this.SetupDefaultValues();
     this.m_AsyncWriteTask = new AsyncTask(new AsyncTask.TaskFunction(this.WriteTask), "Settings Write Thread");
 }
コード例 #2
0
 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");
 }