1 write to tempBuf
System (1)
sys\system\io\ports\SerialStream.cs (1)
682
tempBuf
= new byte[1]; // used in ReadByte()
6 references to tempBuf
System (6)
sys\system\io\ports\SerialStream.cs (6)
1129
IAsyncResult result = BeginReadCore(
tempBuf
, 0, 1, null, null);
1133
numBytes = ReadFileNative(
tempBuf
, 0, 1, null, out hr);
1142
return
tempBuf
[0];
1225
tempBuf
[0] = value;
1231
IAsyncResult result = BeginWriteCore(
tempBuf
, 0, 1, null, null);
1239
numBytes = WriteFileNative(
tempBuf
, 0, 1, null, out hr);