Interface IAsyncStateCommand
Represents an async state command.
Inherited Members
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.Windows.Diagrams.Core.dll
Syntax
public interface IAsyncStateCommand : ICommand
Properties
IsCommited
Gets a value indicating whether this instance is committed.
Declaration
bool IsCommited { get; }
Property Value
System.Boolean
|
Methods
Complete(Boolean, Object)
Completes the execution.
Declaration
void Complete(bool commit, object state)
Parameters
System.Boolean
commit
True, if the command should be committed. |
System.Object
state
The state. |
Events
Completed
Occurs when the command is completed.
Declaration
event EventHandler Completed
Event Type
System.EventHandler
|