コード例 #1
0
ファイル: PipeServer.cs プロジェクト: humanosc/Work
 protected virtual void onMessageReceived ( PipeServerEventArgs e )
 {
     if ( MessageReceived != null )
     {
         MessageReceived( this, e );
     }
 }
コード例 #2
0
ファイル: HistoryForm.xaml.cs プロジェクト: humanosc/Work
 void _pipeServer_MessageReceived ( object sender, PipeServerEventArgs e )
 {
     if ( e.Error != null )
     {
         App.Instance.HandleException( e.Error );
     }
     else
     {
         Action action = new Action( () => _txbBody.Text += string.Format( "\t{0}\r\n", e.Message ) );
         Dispatcher.Invoke( action );
     }
 }