Closed sensiki closed 1 year ago
var readRequest = new ReadRequest { // set the NodesToRead to an array of ReadValueIds. NodesToRead = new[] { // construct a ReadValueId from a NodeId and AttributeId. new ReadValueId { // you can parse the nodeId from a string. // e.g. NodeId.Parse("ns=2;s=Demo.Static.Scalar.Double") NodeId = NodeId.Parse(rd2.NodeId.ToString()), // variable class nodes have a Value attribute. AttributeId = AttributeIds.DataType } } };
I want to get the data type of variables during browse, such as int16、int32、float。 Thank you very much for your answer