Interface IAsyncCommand
Defines Asynchronous command.
Namespace: Syncfusion.UI.Xaml.RichTextBoxAdv
Assembly: Syncfusion.SfRichTextBoxAdv.UWP.dll
Syntax
public interface IAsyncCommand : ICommand
Methods
ExecuteAsync(Object)
Returns the function to be called when the command is invoked.
Declaration
Task ExecuteAsync(object parameter)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | parameter | Data used by the command. If the command does not require data to be passed, this object can be set to null. |
Returns
| Type |
|---|
| System.Threading.Tasks.Task |