BattlelogMobile.Client.GlobalLoading.NotifyValueChanged C# (CSharp) Метод

NotifyValueChanged() приватный Метод

private NotifyValueChanged ( ) : void
Результат void
        private void NotifyValueChanged()
        {
            if (_progressIndicator != null)
            {
                _progressIndicator.IsIndeterminate = _loadingCount > 0;

                if (_progressIndicator.IsVisible == false)
                    _progressIndicator.IsVisible = true;
                else
                    _progressIndicator.IsVisible = false;
            }
        }