DeviceCommunicationWriteAsync 方法 (String, Int16) |
异步写入short数组,返回是否成功
Asynchronously write short array, return whether the write was successful
命名空间:
HslCommunication.Core.Device
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public virtual Task<OperateResult> WriteAsync(
string address,
short[] values
)
Public Overridable Function WriteAsync (
address As String,
values As Short()
) As Task(Of OperateResult)
public:
virtual Task<OperateResult^>^ WriteAsync(
String^ address,
array<short>^ values
)
abstract WriteAsync :
address : string *
values : int16[] -> Task<OperateResult>
override WriteAsync :
address : string *
values : int16[] -> Task<OperateResult>
参数
- address
- 类型:SystemString
起始地址 - values
- 类型:SystemInt16
写入值
返回值
类型:
TaskOperateResult带有成功标识的结果类对象
实现
IReadWriteNetWriteAsync(String, Int16)示例
以下为三菱的连接对象示例,其他的设备读写情况参照下面的代码:
MelsecMcNet melsec_net = new MelsecMcNet( "192.168.0.100", 6000 );
await melsec_net.WriteAsync( "D100", new short[] { 123, -342, 3535 } );
OperateResult write = await melsec_net.WriteAsync( "D100", new short[] { 123, -342, 3535 } );
if (write.IsSuccess)
{
}
else
{
}
参见