点击或拖拽改变大小

SerialDeviceBaseWriteAsync 方法 (String, String, Encoding)

异步写入字符串信息,需要指定的编码信息
Asynchronously write string information, need to specify the encoding information

命名空间:  HslCommunication.Serial
程序集:  HslCommunication (在 HslCommunication.dll 中) 版本:11.8.2.0 (11.8.2.0)
语法
public virtual Task<OperateResult> WriteAsync(
	string address,
	string value,
	Encoding encoding
)

参数

address
类型:SystemString
起始地址
value
类型:SystemString
写入值
encoding
类型:System.TextEncoding
指定的编码信息

返回值

类型:TaskOperateResult
带有成功标识的结果类对象

实现

IReadWriteNetWriteAsync(String, String, Encoding)
示例
以下为三菱的连接对象示例,其他的设备读写情况参照下面的代码:
String类型示例
MelsecMcNet melsec_net = new MelsecMcNet( "192.168.0.100", 6000 );

// 简单的写入
await melsec_net.WriteAsync( "D100", "ABCDEFGH" );

// 如果想要判断是否写入成功
OperateResult write = await melsec_net.WriteAsync( "D100", "ABCDEFGH" );
if (write.IsSuccess)
{
    // success
}
else
{
    // failed
}
参见