5 instantiations of SerialErrorReceivedEventArgs
System (5)
sys\system\io\ports\SerialStream.cs (5)
1864
stream.ErrorReceived(stream, new
SerialErrorReceivedEventArgs
(SerialError.TXFull));
1867
stream.ErrorReceived(stream, new
SerialErrorReceivedEventArgs
(SerialError.RXOver));
1870
stream.ErrorReceived(stream, new
SerialErrorReceivedEventArgs
(SerialError.Overrun));
1873
stream.ErrorReceived(stream, new
SerialErrorReceivedEventArgs
(SerialError.RXParity));
1876
stream.ErrorReceived(stream, new
SerialErrorReceivedEventArgs
(SerialError.Frame));
2 references to SerialErrorReceivedEventArgs
System (2)
sys\system\io\ports\SerialErrors.cs (1)
41
public delegate void SerialErrorReceivedEventHandler(object sender,
SerialErrorReceivedEventArgs
e);
sys\system\io\ports\SerialPort.cs (1)
1398
private void CatchErrorEvents(object src,
SerialErrorReceivedEventArgs
e)