Table of Contents

Interface IAsyncCommand

Namespace
Loehnert.Lisrt.Framework
Assembly
Loehnert.Lisrt.dll

Represents an interface for an asynchronous command.

public interface IAsyncCommand : ICommand
Inherited Members

Remarks

Properties

IsBusy

Gets a value indicating whether the command is busy.

bool IsBusy { get; }

Property Value

bool

Methods

ExecuteAsync(object)

Execute the set action asynchronous.

Task ExecuteAsync(object parameter)

Parameters

parameter object

Data used by the command.

Returns

Task

The running task.

Events

ExecutingCompleted

Occurs when the command executing completed.

event EventHandler ExecutingCompleted

Event Type

EventHandler