Example #1
0
 void SSH_RX_LogEvent(object sender, LogArgs e)
 {
     if (this.LogEvent != null)
     {
         this.LogEvent(sender, e);
     }
 }
Example #2
0
 void LogData(object sender, LogArgs arg)
 {
     if (this.LogEvent != null)
     {
         this.LogEvent(this, arg);
     }
     this.cport.Write(arg.data);
 }
Example #3
0
 void DBG_LogEvent(object sender, LogArgs e)
 {
     if (this.InvokeRequired)
     {
         this.BeginInvoke((MethodInvoker)delegate
         {
             DBG_LogEvent(sender, e);
         });
         return;
     }
     this.rtb_debug.AppendText(e.data);
 }
Example #4
0
 void DBG_LogEvent(object sender, LogArgs e)
 {
     if (this.InvokeRequired)
     {
         this.BeginInvoke((MethodInvoker) delegate
         {
             DBG_LogEvent(sender, e);
         });
         return;
     }
     this.rtb_debug.AppendText(e.data);
 }
Example #5
0
 void LogData(object sender, LogArgs arg)
 {
     if (this.LogEvent != null) this.LogEvent(this, arg);
     this.cport.Write(arg.data);
 }
 void SSH_RX_LogEvent(object sender, LogArgs e)
 {
     if (this.LogEvent != null) this.LogEvent(sender, e);
 }