| MqttRpcDeviceWrite 方法 (String, String) | 
 
            写入字符串信息,编码为ASCII
            Write string information, encoded as ASCII
            
 
        命名空间: 
     HslCommunication.MQTT
        程序集:
     HslCommunication (在 HslCommunication.dll 中) 版本:12.5.1.0 (12.5.1.0)
 语法
语法public virtual OperateResult Write(
	string address,
	string value
)
Public Overridable Function Write ( 
	address As String,
	value As String
) As OperateResult
public:
virtual OperateResult^ Write(
	String^ address, 
	String^ value
)
abstract Write : 
        address : string * 
        value : string -> OperateResult 
override Write : 
        address : string * 
        value : string -> OperateResult 参数
- address
- 类型:SystemString
 起始地址
- value
- 类型:SystemString
 写入值
返回值
类型:
OperateResult带有成功标识的结果类对象
实现
IReadWriteNetWrite(String, String) 示例
示例
            以下为三菱的连接对象示例,其他的设备读写情况参照下面的代码:
            
MelsecMcNet melsec_net = new MelsecMcNet( "192.168.0.100", 6000 );
melsec_net.Write( "D100", "ABCDEFGH" );
OperateResult write = melsec_net.Write( "D100", "ABCDEFGH" );
if (write.IsSuccess)
{
    
}
else
{
    
} 参见
参见