Catel.MVVM.ProgressNotifyableViewModel.UpdateStatus C# (CSharp) Метод

UpdateStatus() публичный Метод

The update status.
The is null.
public UpdateStatus ( int currentItem, int totalItems, ITask task ) : void
currentItem int The current item.
totalItems int The total items.
task ITask The task
Результат void
        public void UpdateStatus(int currentItem, int totalItems, ITask task)
        {
            Argument.IsNotNull("task", task);

            Task = task;

            _currentItem = currentItem;
            _totalItems = totalItems;

            RaisePropertyChanged(() => Percentage);
        }