2 writes to singleCharBuffer
System (2)
sys\system\io\ports\SerialPort.cs (2)
314
singleCharBuffer
= null;
1251
singleCharBuffer
= new char[maxByteCountForSingleChar];
5 references to singleCharBuffer
System (5)
sys\system\io\ports\SerialPort.cs (5)
1249
if (
singleCharBuffer
== null) {
1258
numCharsRead = InternalRead(
singleCharBuffer
, 0, 1, readTimeout, true);
1262
numCharsRead = InternalRead(
singleCharBuffer
, 0, 1, readTimeout - timeUsed, true);
1275
currentLine.Append(
singleCharBuffer
, 0, numCharsRead);
1277
if (lastValueChar == (char)
singleCharBuffer
[numCharsRead-1] && (currentLine.Length >= value.Length)) {