BudgetAnalyser.Engine.Widgets.TimedUpdateCounterWidget.Update C# (CSharp) Method

Update() public method

Updates the widget with new input.
public Update ( ) : void
return 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