示例#1
0
 internal SerialErrorReceivedEventArgs(SerialErrorType errorType)
 {
     this.errorType = errorType;
 }
示例#2
0
 void SerialPort_OnError(object sender, string message, SerialErrorType error)
 {
     Trace.TraceWarning("Serial Port error.");
     Trace.TraceError(String.Format("{0} - {1}", error.ToString(), message));
 }