Exemplo n.º 1
0
        //private bool _isAttachedPerformanceCounters = false;
        public void AttachPerformanceCountersToProperties
        (
            string instanceName
            , string categoryName
        )
        {
            var type = this.GetType();

            PerformanceCountersHelper.AttachPerformanceCountersToProperties <SessionsPerformanceCountersContainer>(instanceName, categoryName, this);
        }
 public void AttachPerformanceCountersToProperties
 (
     string instanceName
     , string categoryName
 )
 {
     if (!_isAttachedPerformanceCounters)
     {
         var type = this.GetType();
         PerformanceCountersHelper
         .AttachPerformanceCountersToProperties <QueuePerformanceCountersContainer>
             (instanceName, categoryName, this);
     }
     _isAttachedPerformanceCounters = true;
 }