点击或拖拽改变大小

AllenBradleyNetWrite 方法 (String, Int64)

写入long数组,返回是否成功
Write long array, return whether the write was successful

命名空间:  HslCommunication.Profinet.AllenBradley
程序集:  HslCommunication (在 HslCommunication.dll 中) 版本:11.8.2.0 (11.8.2.0)
语法
public override OperateResult Write(
	string address,
	long[] values
)

参数

address
类型:SystemString
起始地址
values
类型:SystemInt64
写入值

返回值

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

实现

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

// 简单的写入
melsec_net.Write( "D100", new long[] { 123, 342, -352312335, 1235234 } );

// 如果想要判断是否写入成功
OperateResult write = melsec_net.Write( "D100", new long[] { 123, 342, -352312335, 1235234 } );
if (write.IsSuccess)
{
    // success
}
else
{
    // failed
}
参见