We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f130ada commit c27f86aCopy full SHA for c27f86a
Src/AsyncAwaitBestPractices.MVVM/AsyncCommand.cs
@@ -141,8 +141,6 @@ public event EventHandler CanExecuteChanged
141
/// Executes the Command as a Task
142
/// </summary>
143
/// <returns>The executed Task</returns>
144
- /// <param name="parameter">Data used by the command. If the command does not require data to be passed, this object can be set to null.</param>
145
-
146
public Task ExecuteAsync() => _execute();
147
148
void ICommand.Execute(object parameter) => _execute().SafeFireAndForget(_continueOnCapturedContext, _onException);
0 commit comments