コード例 #1
0
ファイル: Form2.cs プロジェクト: starboxs/GPS_Service
 void alertClient_ServiceReadyReceived(AlertClient sender, ServiceReadyMsg ServiceReadyMsg)
 {
     Action action = () =>
     {
         txtMsg.AppendText(string.Format("Service Ack: {0}\r\n", ServiceReadyMsg));
     };
     this.BeginInvoke(action);
 }
コード例 #2
0
ファイル: AlertClient.cs プロジェクト: starboxs/GPS_Service
 //----------20131203  1515
 //----------20131218 0940
 private void OnServiceReadyReceived(ServiceReadyMsg serviceReadyMsg)
 {
     if (this.ServiceReadyReceived != null)
         this.ServiceReadyReceived(this, serviceReadyMsg);
 }