Example #1
0
 void dl_OnRawDataReceive(object sender, NovaAlert.Communication.Base.DataLinkEventArg e)
 {
     if (_sb.Length > 2000)
     {
         _sb.Clear();
     }
     _sb.AppendLine(e.Data);
 }
Example #2
0
 void _modem_OnDataReceived(object sender, NovaAlert.Communication.Base.DataLinkEventArg e)
 {
     if (_sb.Length > 2000)
     {
         _sb.Clear();
     }
     _sb.AppendLine(e.Data);
     OnPropertyChanged("LogText");
 }