/// <summary>
 /// Reads data from the plc.
 /// </summary>
 /// <param name="values">a list of tags with the following syntax Area.Offset,DataType[,length]</param>
 /// <returns>returns a enumerable with the read values</returns>
 public static Task <IEnumerable <DataValue> > ReadAsync(this Dacs7Client client, IEnumerable <string> values) => client.ReadAsync(client.CreateNodeIdCollection(values));