File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,13 +33,12 @@ public sealed class DelegateCommand<T> : ICommand
3333 private readonly Action < T ? > _execute ;
3434
3535 /// <summary>
36- /// Initializes a new instance of the <see cref="DelegateCommand{T}" /> class.
36+ /// Initializes a new instance of the <see cref="DelegateCommand{T}" /> class.
3737 /// </summary>
38- /// <param name="action">The action to execute.</param>
39- /// <param name="canExecute">
40- /// A predicate to determine if the command can execute. If null, the command is always
41- /// executable.
42- /// </param>
38+ /// <param name="execute">The execute.</param>
39+ /// <param name="canExecute">A predicate to determine if the command can execute. If null, the command is always
40+ /// executable.</param>
41+ /// <exception cref="System.ArgumentNullException">execute</exception>
4342 /// <exception cref="ArgumentNullException">Thrown when the action is null.</exception>
4443 public DelegateCommand ( Action < T ? > execute , Predicate < T ? > ? canExecute = null )
4544 {
You can’t perform that action at this time.
0 commit comments