コード例 #1
0
		public void PostAdditionalInfo(DataObject data)
		{
			Status = ServerStatus.Starting;

			StopPost();

			WorkerThread = new CommThread(this, data);
			WorkerThread.Name = "AddInfoThread";
			WorkerThread.PostType = PostType.AdditionalInformation;
			WorkerThread.Start();
		}
コード例 #2
0
		public void PostAnalysis(DataObject data)
		{
			Status = ServerStatus.Starting;

			StopPost();

			WorkerThread = new CommThread(this, data);
			WorkerThread.Name = "PostAnalysisThread";
			WorkerThread.PostType = PostType.Analysis;
			WorkerThread.Start();
		}