what causes the .NET SerialPort class DataReceived event to fire?

Posted by Klay on Stack Overflow See other posts from Stack Overflow or by Klay
Published on 2010-02-19T20:02:12Z Indexed on 2010/03/21 18:41 UTC
Read the original article Hit count: 266

Filed under:
|
|
|

I understand from the MSDN docs that the event DataReceived will not necessarily fire once per byte.

But does anyone know what exactly is the mechanism that causes the event to fire?

Does the receipt of each byte restart a timer that has to reach, say 10 ms between bytes, before the event fires?

I ask because I'm trying to write an app that reads XML data coming in from a serial port.

Because my laptop has no serial ports, I use a virtual serial port emulator. (I know, I know--I can't do anything about it ATM).

When I pass data through the emulated port to my app, the event fires once for each XML record (about 1500 bytes). Perfect. But when a colleague at another office tries it with two computers connected by an actual cable, the DataReceived event fires repeatedly, after every 10 or so bytes of XML, which totally throws off the app.

© Stack Overflow or respective owner

Related posts about serial-port

Related posts about datareceived