SenseNet.ContentRepository.SenseNetPerformanceCounter.Increment C# (CSharp) Method

Increment() private method

private Increment ( ) : bool
return bool
        internal bool Increment()
        {
            if (!this.Accessible)
                return false;

            try
            {
                _counter.Increment();
            }
            catch (Exception ex)
            {
                LogException(ex);
                return false;
            }

            return true;
        }