SerialPort Constructor (String^, Int32, Parity, Int32, StopBits)
.NET Framework (current version)
Initializes a new instance of the SerialPort class using the specified port name, baud rate, parity bit, data bits, and stop bit.
Assembly: System (in System.dll)
public: SerialPort( String^ portName, int baudRate, Parity parity, int dataBits, StopBits stopBits )
Parameters
- portName
-
Type:
System::String^
The port to use (for example, COM1).
- baudRate
-
Type:
System::Int32
The baud rate.
- parity
-
Type:
System.IO.Ports::Parity
One of the Parity values.
- dataBits
-
Type:
System::Int32
The data bits value.
- stopBits
-
Type:
System.IO.Ports::StopBits
One of the StopBits values.
| Exception | Condition |
|---|---|
| IOException | The specified port could not be found or opened. |
Use this constructor to create a new instance of the SerialPort class when you want to specify the port name, the baud rate, the parity bit, data bits, and stop bit.
.NET Framework
Available since 2.0
Available since 2.0
Show: