OmronHostLinkHelperReadAsync 方法 (IHostLink, String) |
从欧姆龙PLC中读取多个地址的数据,返回读取结果,每个地址按照字为单位读取,地址格式为"D100","C100","W100","H100","A100"
命名空间:
HslCommunication.Profinet.Omron.Helper
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.2.0.0 (12.2.0.0)
语法 public static Task<OperateResult<byte[]>> ReadAsync(
IHostLink hostLink,
string[] address
)
Public Shared Function ReadAsync (
hostLink As IHostLink,
address As String()
) As Task(Of OperateResult(Of Byte()))
public:
static Task<OperateResult<array<unsigned char>^>^>^ ReadAsync(
IHostLink^ hostLink,
array<String^>^ address
)
static member ReadAsync :
hostLink : IHostLink *
address : string[] -> Task<OperateResult<byte[]>>
参数
- hostLink
- 类型:HslCommunication.Profinet.Omron.HelperIHostLink
[缺少 "M:HslCommunication.Profinet.Omron.Helper.OmronHostLinkHelper.ReadAsync(HslCommunication.Profinet.Omron.Helper.IHostLink,System.String[])" 的 <param name="hostLink"/> 文档]
- address
- 类型:SystemString
从欧姆龙PLC中读取多个地址的数据,返回读取结果,每个地址按照字为单位读取,地址格式为"D100","C100","W100","H100","A100"
返回值
类型:
TaskOperateResultByte带成功标志的结果数据对象
备注
如果需要需要额外指定站号的话,在第一个地址里,使用 s=2;D100 这种携带地址的功能
参见