IReadWriteNetWriteAsync 方法 (String, Byte) |
异步写入原始的byte数组数据到指定的地址,返回是否写入成功
Asynchronously writes the original byte array data to the specified address, and returns whether the write was successful
命名空间:
HslCommunication.Core
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 Task<OperateResult> WriteAsync(
string address,
byte[] value
)
Function WriteAsync (
address As String,
value As Byte()
) As Task(Of OperateResult)
Task<OperateResult^>^ WriteAsync(
String^ address,
array<unsigned char>^ value
)
abstract WriteAsync :
address : string *
value : byte[] -> Task<OperateResult>
参数
- address
- 类型:SystemString
起始地址 - value
- 类型:SystemByte
写入值
返回值
类型:
TaskOperateResult带有成功标识的结果类对象
示例
以下为三菱的连接对象示例,其他的设备读写情况参照下面的代码:
MelsecMcNet melsec_net = new MelsecMcNet( "192.168.0.100", 6000 );
await melsec_net.WriteAsync( "D100", (short)123 );
OperateResult write = await melsec_net.WriteAsync( "D100", (short)123 );
if (write.IsSuccess)
{
}
else
{
}
参见