5 references to One
System (5)
sys\system\io\ports\SerialPort.cs (2)
45
private const StopBits defaultStopBits = StopBits.
One
;
531
if (value < StopBits.
One
|| value > StopBits.OnePointFive)
sys\system\io\ports\SerialStream.cs (3)
517
Debug.Assert(!(value < StopBits.
One
|| value > StopBits.OnePointFive), "An invalid value was passed to StopBits");
520
if (value == StopBits.
One
) nativeValue = (byte) NativeMethods.ONESTOPBIT;
1280
case StopBits.
One
: