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 262ccdd commit 0cb457aCopy full SHA for 0cb457a
README.md
@@ -151,12 +151,14 @@ public void RaiseErrorOcurred(string message) => _weakEventManager.HandleEvent(t
151
152
## AsyncAwaitBestPractices.MVVM
153
154
+### `AsyncCommand`
155
+
156
Allows for `Task` to safely be used asynchronously with `ICommand`:
157
-### `AsyncCommand<T> : IAsyncCommand<T>`
-### `IAsyncCommand<T> : ICommand`
158
-### `AsyncCommand : IAsyncCommand`
159
-### `IAsyncCommand : ICommand`
+- `AsyncCommand<T> : IAsyncCommand<T>`
+- `IAsyncCommand<T> : ICommand`
160
+- `AsyncCommand : IAsyncCommand`
161
+- `IAsyncCommand : ICommand`
162
163
```csharp
164
public AsyncCommand(Func<T, Task> execute,
0 commit comments