16 references to StopBits
System (1)
src\runtime\src\libraries\shims\System\ref\System.cs (1)
581
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.IO.Ports.
StopBits
))]
System.IO.Ports (15)
_generated\0\LibraryImports.g.cs (2)
8
internal static partial int TermiosReset(global::System.IO.Ports.SafeSerialDeviceHandle handle, int speed, int data, global::System.IO.Ports.
StopBits
stop, global::System.IO.Ports.Parity parity, global::System.IO.Ports.Handshake flow)
37
static extern unsafe int __PInvoke(nint __handle_native, int __speed_native, int __data_native, global::System.IO.Ports.
StopBits
__stop_native, global::System.IO.Ports.Parity __parity_native, global::System.IO.Ports.Handshake __flow_native);
src\runtime\src\libraries\Common\src\Interop\Unix\System.IO.Ports.Native\Interop.Termios.cs (1)
33
internal static partial int TermiosReset(SafeSerialDeviceHandle handle, int speed, int data,
StopBits
stop, Parity parity, Handshake flow);
System\IO\Ports\SerialPort.cs (7)
19
private const
StopBits
DefaultStopBits =
StopBits
.One;
41
private
StopBits
_stopBits = DefaultStopBits;
487
public
StopBits
StopBits
496
if (value <
StopBits
.One || value >
StopBits
.OnePointFive)
576
public SerialPort(string portName, int baudRate, Parity parity, int dataBits,
StopBits
stopBits) : this()
System\IO\Ports\SerialStream.Unix.cs (5)
25
private
StopBits
_stopBits;
327
internal
StopBits
StopBits
331
Debug.Assert(!(value <
StopBits
.One || value >
StopBits
.OnePointFive), "An invalid value was passed to StopBits");
597
internal SerialStream(string portName, int baudRate, Parity parity, int dataBits,
StopBits
stopBits, int readTimeout, int writeTimeout, Handshake handshake,