StupendousCounter.Core.ViewModel.CounterViewModel.IncrementAsync C# (CSharp) Méthode

IncrementAsync() private méthode

private IncrementAsync ( ) : System.Threading.Tasks.Task
Résultat System.Threading.Tasks.Task
        private async Task IncrementAsync()
        {
            await _databaseHelper.IncrementCounterAsync(_counter);
            RaisePropertyChanged(() => Value);
        }