Quickstarts.TestData.GetProcessedValues C# (CSharp) Method

GetProcessedValues() public method

Returns the values in the specified processed dataset.
public GetProcessedValues ( ProcessedDataSetType dataset ) : DataValue>.SortedDictionary
dataset ProcessedDataSetType
return DataValue>.SortedDictionary
        public SortedDictionary<DateTime, DataValue> GetProcessedValues(ProcessedDataSetType dataset)
        {
            if (dataset != null)
            {
                return ToDataValues(dataset.Values);
            }

            return new SortedDictionary<DateTime,DataValue>();
        }