HslHelperToFormatString 方法 |
将串口的一些参数,变成一个统一的格式化的字符串,例如 COM3-9600-8-N-1
命名空间:
HslCommunication.Core
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static string ToFormatString(
string portName,
int baudRate,
int dataBits,
Parity parity,
StopBits stopBits
)
Public Shared Function ToFormatString (
portName As String,
baudRate As Integer,
dataBits As Integer,
parity As Parity,
stopBits As StopBits
) As String
public:
static String^ ToFormatString(
String^ portName,
int baudRate,
int dataBits,
Parity parity,
StopBits stopBits
)
static member ToFormatString :
portName : string *
baudRate : int *
dataBits : int *
parity : Parity *
stopBits : StopBits -> string
参数
- portName
- 类型:SystemString
端口号 - baudRate
- 类型:SystemInt32
波特率 - dataBits
- 类型:SystemInt32
数据位 - parity
- 类型:System.IO.PortsParity
奇偶校验位 - stopBits
- 类型:System.IO.PortsStopBits
停止位
返回值
类型:
String格式化的字符串
参见