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

SetRawValue() private method

private SetRawValue ( long value ) : bool
value long
return bool
        internal bool SetRawValue(long value)
        {
            if (!this.Accessible)
                return false;

            try
            {
                _counter.RawValue = value;
            }
            catch (Exception ex)
            {
                LogException(ex);
                return false;
            }

            return true;
        }