SerialData 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 the type of character that was received on the serial port of the SerialPort object.
public enum class SerialData
public enum SerialData
type SerialData =
Public Enum SerialData
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Chars | 1 | A character was received and placed in the input buffer. |
Eof | 2 | The end of file character was received and placed in the input buffer. |
Remarks
This enumeration is used with the SerialPort.DataReceived event. You examine the type of character that was received by retrieving the value of the SerialDataReceivedEventArgs.EventType property. The EventType property contains one of the values from the SerialData
enumeration.