BloombergFLP.CollectdWin.CounterConfigCollection.GetElementKey C# (CSharp) Method

GetElementKey() protected method

protected GetElementKey ( ConfigurationElement element ) : object
element System.Configuration.ConfigurationElement
return object
        protected override object GetElementKey(ConfigurationElement element)
        {
            var counterConfig = (CounterConfig) element;
                return (counterConfig.Category + "_" + counterConfig.Name + "_" + counterConfig.Instance);
        }
CounterConfigCollection