| MemobusTcpNetWriteAsync 方法 (String, UInt16) | 
 
            写入ushort数据,返回是否成功
            Write ushort data, return whether the write was successful
            
 
        命名空间: 
     HslCommunication.Profinet.YASKAWA
        程序集:
     HslCommunication (在 HslCommunication.dll 中) 版本:12.5.1.0 (12.5.1.0)
 语法
语法public override Task<OperateResult> WriteAsync(
	string address,
	ushort value
)
Public Overrides Function WriteAsync ( 
	address As String,
	value As UShort
) As Task(Of OperateResult)
public:
virtual Task<OperateResult^>^ WriteAsync(
	String^ address, 
	unsigned short value
) override
abstract WriteAsync : 
        address : string * 
        value : uint16 -> Task<OperateResult> 
override WriteAsync : 
        address : string * 
        value : uint16 -> Task<OperateResult> 参数
- address
- 类型:SystemString
 起始地址
- value
- 类型:SystemUInt16
 写入值
返回值
类型:
TaskOperateResult带有成功标识的结果类对象
实现
IReadWriteNetWriteAsync(String, UInt16)IReadWriteNetWriteAsync(String, UInt16) 备注
备注
            单一保持寄存器的值变更,使用的主功能码为0x20, 默认子功能码为0x06
            The value of a single hold register changes, using a primary function code of 0x20 and a default subfunction code of 0x06
            
 示例
示例
            以下为三菱的连接对象示例,其他的设备读写情况参照下面的代码:
            
MelsecMcNet melsec_net = new MelsecMcNet( "192.168.0.100", 6000 );
melsec_net.Write( "D100", (ushort)123 );
OperateResult write = melsec_net.Write( "D100", (ushort)123 );
if (write.IsSuccess)
{
    
}
else
{
    
} 参见
参见