Account.MonthlyManagement.ViewModel.VMMonthlyManagement.RefreshMonthly C# (CSharp) Méthode

RefreshMonthly() private méthode

private RefreshMonthly ( bool showNotFoundMessage ) : void
showNotFoundMessage bool
Résultat void
        private void RefreshMonthly(bool showNotFoundMessage)
        {
            this.RefreshingVisibility = Visibility.Visible;
            this._showNotFoundMessage = showNotFoundMessage;
            this._monthlys.Clear();
            this._tf.StartNew(this.GetMonthlys).ContinueWith(this.GetMonthlysCompleted, this._scheduler);
        }