BudgetAnalyser.Engine.Widgets.TimedUpdateCounterWidget.Update C# (CSharp) Méthode

Update() public méthode

Updates the widget with new input.
public Update ( ) : void
Résultat void
        public override void Update([NotNull] params object[] input)
        {
            if (input == null)
            {
                throw new ArgumentNullException(nameof(input));
            }

            this.refreshCount++;
            Enabled = true;
            LargeNumber = this.refreshCount.ToString(CultureInfo.CurrentCulture);
        }
    }
TimedUpdateCounterWidget