PanasonicMewtocolServerReadBool 方法 (String, UInt16) |
批量读取松下PLC的位数据,按照字为单位,地址为 X0,X10,Y10,读取的长度为16的倍数
Read the bit data of Panasonic PLC in batches, the unit is word, the address is X0, X10, Y10, and the read length is a multiple of 16
命名空间:
HslCommunication.Profinet.Panasonic
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public override OperateResult<bool[]> ReadBool(
string address,
ushort length
)
Public Overrides Function ReadBool (
address As String,
length As UShort
) As OperateResult(Of Boolean())
public:
virtual OperateResult<array<bool>^>^ ReadBool(
String^ address,
unsigned short length
) override
abstract ReadBool :
address : string *
length : uint16 -> OperateResult<bool[]>
override ReadBool :
address : string *
length : uint16 -> OperateResult<bool[]>
参数
- address
- 类型:SystemString
起始地址 - length
- 类型:SystemUInt16
数据长度
返回值
类型:
OperateResultBoolean读取结果对象
实现
IReadWriteNetReadBool(String, UInt16)备注
在服务器端的功能实现里,长度支持任意的长度信息。
In the server-side function implementation, the length supports arbitrary length information.
参见