18 references to SerialError
System (18)
sys\system\io\ports\SerialErrors.cs (3)
30private SerialError errorType; 32internal SerialErrorReceivedEventArgs(SerialError eventCode) { 36public SerialError EventType {
sys\system\io\ports\SerialStream.cs (15)
55const int errorEvents = (int) (SerialError.Frame | SerialError.Overrun | 56SerialError.RXOver | SerialError.RXParity | SerialError.TXFull); 1863if ((errors & (int) SerialError.TXFull) != 0) 1864stream.ErrorReceived(stream, new SerialErrorReceivedEventArgs(SerialError.TXFull)); 1866if ((errors & (int) SerialError.RXOver) != 0) 1867stream.ErrorReceived(stream, new SerialErrorReceivedEventArgs(SerialError.RXOver)); 1869if ((errors & (int) SerialError.Overrun) != 0) 1870stream.ErrorReceived(stream, new SerialErrorReceivedEventArgs(SerialError.Overrun)); 1872if ((errors & (int) SerialError.RXParity) != 0) 1873stream.ErrorReceived(stream, new SerialErrorReceivedEventArgs(SerialError.RXParity)); 1875if ((errors & (int) SerialError.Frame) != 0) 1876stream.ErrorReceived(stream, new SerialErrorReceivedEventArgs(SerialError.Frame));