FujiSPHNetReadBool 方法 (String, UInt16) |
批量读取位数据的方法,需要传入位地址,读取的位长度,地址示例:M1.100.5,M3.1000.12,M10.1000.0
To read the bit data in batches, you need to pass in the bit address, the length of the read bit, address examples: M1.100.5, M3.1000.12, M10.1000.0
命名空间:
HslCommunication.Profinet.Fuji
程序集:
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
PLC的地址,示例:M1.100.5,M3.1000.12,M10.1000.0 - length
- 类型:SystemUInt16
读取的bool长度信息
返回值
类型:
OperateResultBoolean包含bool[]的结果对象
实现
IReadWriteNetReadBool(String, UInt16)参见