SensorHost.DTOs.Reply.Reply C# (CSharp) Method

Reply() public method

Initializes a new instance of the Reply class.
public Reply ( string description, List resultsList ) : System.Collections.Generic
description string The description for the sensor
resultsList List /// The results list. ///
return System.Collections.Generic
        public Reply(string description, List<Result> resultsList)
        {
            Prtg = new Prtg(description, resultsList);
        }
Reply