| DLT645HelperReadStringArrayAsync 方法  | 
 
            读取指定地址的所有的字符串数据信息,一般来说,一个地址只有一个数据,但是少部分的地址存在多个数据,例如 01-01-00-00 正向有功总需求及发生时间
            Read all the string data information of the specified address, in general, there is only one data for one address, but there are multiple data for a small number of addresses, 
            such as 01-01-00-00 Forward active total demand and occurrence time
            
 
        命名空间: 
     HslCommunication.Instrument.DLT.Helper
        程序集:
     HslCommunication (在 HslCommunication.dll 中) 版本:12.5.1.0 (12.5.1.0)
 语法
语法public static Task<OperateResult<string[]>> ReadStringArrayAsync(
	IDlt645 dlt,
	string address
)
Public Shared Function ReadStringArrayAsync ( 
	dlt As IDlt645,
	address As String
) As Task(Of OperateResult(Of String()))
public:
static Task<OperateResult<array<String^>^>^>^ ReadStringArrayAsync(
	IDlt645^ dlt, 
	String^ address
)
static member ReadStringArrayAsync : 
        dlt : IDlt645 * 
        address : string -> Task<OperateResult<string[]>> 
参数
- dlt
- 类型:HslCommunication.Instrument.DLT.HelperIDlt645
 DLT通信对象
- address
- 类型:SystemString
 数据标识,具体需要查找手册来对应
返回值
类型:
TaskOperateResultString字符串数组信息
 备注
备注
            地址可以携带地址域信息,例如 "s=2;00-00-00-00" 或是 "s=100000;00-00-02-00",关于数据域信息,需要查找手册,例如:00-01-00-00 表示: (当前)正向有功总电能
            地址也可以携带是否数据翻转的标记,例如 "reverse=false;00-00-00-00" 解析数据的时候就不发生反转的操作
            
 参见
参见