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