Interface
IAsyncStateCommand

Represents an async state command.

Definition

Namespace:Telerik.Windows.Diagrams.Core

Assembly:Telerik.Windows.Diagrams.Core.dll

Syntax:

cs-api-definition
public interface IAsyncStateCommand : ICommand

Inherited Members ICommand.Undo(object)ICommand.Redo()ICommand.Execute(object)ICommand.CanExecute(object)ICommand.Name

Properties

IsCommited

Gets a value indicating whether this instance is committed.

Declaration

cs-api-definition
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Commited")]
bool IsCommited { get; }

Property Value

bool

Methods

Complete(bool, object)

Completes the execution.

Declaration

cs-api-definition
void Complete(bool commit, object state)

Parameters

commit

bool

True, if the command should be committed.

state

object

The state.

Events

Completed

Occurs when the command is completed.

Declaration

cs-api-definition
event EventHandler Completed

Event Value

EventHandler