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