MvvmFramework.Samples.Uwp.Repositories.TodoListItemsRepository.MarkTodoListItemAsFinished C# (CSharp) 메소드

MarkTodoListItemAsFinished() 공개 메소드

Marks the specified todo list item as finished.
public MarkTodoListItemAsFinished ( string id ) : void
id string The ID of the todo list item that is to be marked as finished.
리턴 void
        public void MarkTodoListItemAsFinished(string id) => this.GetTodoListItem(id).IsFinished = true;