OmronConnectedCipNetReadBoolAsync 方法 (String, UInt16) |
读取bool数据信息,如果读取的是单bool变量,就直接写变量名,如果是 bool 数组,就
Read a single bool data information, if it is a single bool variable, write the variable name directly,
if it is a value of a bool array composed of int, it is always accessed with "i=" at the beginning, for example, "i=A[0]"
命名空间:
HslCommunication.Profinet.Omron
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public override Task<OperateResult<bool[]>> ReadBoolAsync(
string address,
ushort length
)
Public Overrides Function ReadBoolAsync (
address As String,
length As UShort
) As Task(Of OperateResult(Of Boolean()))
public:
virtual Task<OperateResult<array<bool>^>^>^ ReadBoolAsync(
String^ address,
unsigned short length
) override
abstract ReadBoolAsync :
address : string *
length : uint16 -> Task<OperateResult<bool[]>>
override ReadBoolAsync :
address : string *
length : uint16 -> Task<OperateResult<bool[]>>
参数
- address
- 类型:SystemString
节点的名称 -> Name of the node - length
- 类型:SystemUInt16
读取的数组长度信息
返回值
类型:
TaskOperateResultBoolean带有结果对象的结果数据 -> Result data with result info
实现
IReadWriteNetReadBoolAsync(String, UInt16)IReadWriteNetReadBoolAsync(String, UInt16)参见