Click here to Skip to main content
15,891,184 members
Articles / Programming Languages / Visual Basic 10
Tip/Trick

Read n bytes from the serial port in .NET

Rate me:
Please Sign up or sign in to vote.
4.00/5 (1 vote)
6 Mar 2012CPOL 51.5K   4   1
Read n bytes from the serial port in .net

Introduction

This code snippet tries to help you to read n bytes from the Serial Port in .NET Framework.

Background

Working with the serial port in .NET, I found what appears to be a fairly common problem:

VB.NET
SerialPort.Read(buffer,offset,length)

The above code doesn't return the bytes requested, instead, return the bytes available in buffer and you need to call this function repeatedly in order to obtain the required bytes.

Solution

Based in this post I make my own solution with a Extension Method:

VB.NET
<Extension()>
Public Function Read(ByVal port As SerialPort, ByVal count As Integer) As Byte()
 Dim buffer(count - 1) As Byte
 Dim readBytes As Integer
 Dim totalReadBytes As Integer
 Dim offset As Integer
 Dim remaining As Integer = count
 
 Try
    Do
       readBytes = port.Read(buffer, offset, remaining)
       offset += readBytes
       remaining -= readBytes
       totalReadBytes += readBytes
    Loop While remaining > 0 AndAlso readBytes > 0
 Catch ex As TimeoutException
    ReDim Preserve buffer(totalReadBytes - 1)
 End Try
 
 Return buffer
 
End Function

The above function loops until all bytes requested are read. If a TimeOutException occurs (because there are no more data in buffer), the fuction returns the bytes read until the exception occured or a empty byte array if no byte was read.

I hope this can help or if any of you have a better option let us know.

Write your comments, thanks.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Mexico Mexico
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
PraiseNice Solution Pin
bojammis18-Feb-16 8:11
professionalbojammis18-Feb-16 8:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.