namespace SHJX.Service.PortClient.Commands { public class HeatingReadPortCommand : IPortCommand { public override object Execute(PortEventArgs args) { double pv = 0; double sv = 0; ReadPVnSV(args.NodeId, ref pv, ref sv); Dictionary temp = new() { { "pv", pv }, { "sv", sv } }; return temp; } } }