SerialData Enum

Definition

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
SerialData

Fields

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.

Applies to