SerialError Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies errors that occur on the SerialPort object.
public enum class SerialError
public enum SerialError
type SerialError =
Public Enum SerialError
- Inheritance
Fields
Name | Value | Description |
---|---|---|
RXOver | 1 | An input buffer overflow has occurred. There is either no room in the input buffer, or a character was received after the end-of-file (EOF) character. |
Overrun | 2 | A character-buffer overrun has occurred. The next character is lost. |
RXParity | 4 | The hardware detected a parity error. |
Frame | 8 | The hardware detected a framing error. |
TXFull | 256 | The application tried to transmit a character, but the output buffer was full. |
Remarks
This enumeration can be useful when handling the SerialPort.ErrorReceived event to detect and respond to errors when communicating data through a SerialPort. You examine the type of error by retrieving the SerialErrorReceivedEventArgs.EventType property. The EventType property contains one of the values from the SerialError
enumeration.
Applies to
.NET