Quickstarts.TestData.GetRawValues C# (CSharp) Method

GetRawValues() public method

Returns the values in the specified raw dataset.
public GetRawValues ( string dataSetName ) : DataValue>.SortedDictionary
dataSetName string
return DataValue>.SortedDictionary
        public SortedDictionary<DateTime, DataValue> GetRawValues(string dataSetName)
        {
            RawDataSetType dataset = FindRawDataSet(dataSetName);

            if (dataset != null)
            {
                return ToDataValues(dataset.Values);
            }

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