OmronConnectedCipNetReadTimeAsync 方法 |
读取指定地址的时间数据,最小时间为 0,如果获取秒,可以访问 TotalSeconds,当PLC的变量类型为 "Time" 和 "TimeOfDate" 时,都可以用本方法读取。
Read the time data of the specified address. The minimum time is 0. If you get seconds, you can access TotalSeconds.
When the PLC variable type is "Time" and "TimeOfDate", you can use this Method to read.
命名空间:
HslCommunication.Profinet.Omron
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public Task<OperateResult<TimeSpan>> ReadTimeAsync(
string address
)
Public Function ReadTimeAsync (
address As String
) As Task(Of OperateResult(Of TimeSpan))
public:
virtual Task<OperateResult<TimeSpan>^>^ ReadTimeAsync(
String^ address
) sealed
abstract ReadTimeAsync :
address : string -> Task<OperateResult<TimeSpan>>
override ReadTimeAsync :
address : string -> Task<OperateResult<TimeSpan>>
参数
- address
- 类型:SystemString
PLC里变量的地址
返回值
类型:
TaskOperateResultTimeSpan时间的结果对象
实现
IReadWriteCipReadTimeAsync(String)参见