| ISerialPortRead Method |
Reads a number of bytes from the SerialPort input buffer and writes those bytes into a byte array at the specified offset.
Namespace: ESkinAssembly: ESkinLib (in ESkinLib.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax int Read(
byte[] buffer,
int offset,
int count
)
function Read(buffer, offset, count);
Parameters
- buffer
- Type: SystemByte
The byte array to write the input to. - offset
- Type: SystemInt32
The offset in buffer at which to write the bytes. - count
- Type: SystemInt32
The maximum number of bytes to read.
Return Value
Type:
Int32The number of bytes read.
See Also