Aqueduct.Diagnostics.BaseStatisticsStore.GetStatistics C# (CSharp) Method

GetStatistics() public method

public GetStatistics ( ) : long>.IDictionary
return long>.IDictionary
        public IDictionary<string, long> GetStatistics()
        {
            //Clone the Dictionary to stop people messing with the stats
            return Dictionary.ToDictionary(entry => entry.Key, entry => entry.Value);
        }