You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Initializes a new instance of the <see cref="BP35A1"/> class with specifying configurations.
75
+
/// Initializes a new instance of the <see cref="BP35A1"/> class with specifying options.
64
76
/// </summary>
65
-
/// <param name="configurations">
66
-
/// A <see cref="BP35A1Configurations"/> that holds the configurations to the <see cref="BP35A1"/> instance.
77
+
/// <param name="options">
78
+
/// A <see cref="BP35A1Options"/> that holds the options to configure the new instance.
67
79
/// </param>
68
80
/// <param name="serviceProvider">
69
81
/// The <see cref="IServiceProvider"/>.
70
82
/// This constructor overload attempts to get a service of <see cref="IBP35SerialPortStreamFactory"/>, to create an <see cref="System.IO.Ports.SerialPort"/>.
/// Gets or sets the <see cref="string"/> value that holds the serial port name for communicating with the device that implements the SKSTACK-IP protocol.
8
-
/// </summary>
9
-
publicstring?SerialPortName{get;set;}
3
+
usingSystem;
10
4
11
-
/// <summary>
12
-
/// Gets or sets the <see cref="BP35UartBaudRate"/> value that specifies the baud rate of the serial port for communicating with the device.
/* sealed */// TODO: remove BP35A1Configurations and seal BP35A1Options
7
+
classBP35A1Options{
8
+
/// <summary>
9
+
/// Gets or sets the <see cref="string"/> value that holds the serial port name for communicating with the device that implements the SKSTACK-IP protocol.
10
+
/// </summary>
11
+
publicstring?SerialPortName{get;set;}
12
+
13
+
/// <summary>
14
+
/// Gets or sets the <see cref="BP35UartBaudRate"/> value that specifies the baud rate of the serial port for communicating with the device.
0 commit comments