Method | Description | |
---|---|---|
Create ( System.Action action ) : DeferredAction |
Creates a new DeferredAction.
|
|
Defer ( int milliseconds ) : void |
Defers performing the action until after time elapses. Repeated calls will reschedule the action if it has not already been performed.
|
|
Dispose ( ) : void |
Method | Description | |
---|---|---|
DeferredAction ( System.Action action ) : System |
public static Create ( System.Action action ) : DeferredAction | ||
action | System.Action |
/// The action that will be deferred. It is not performed until after |
return | DeferredAction |
public Defer ( int milliseconds ) : void | ||
milliseconds | int | /// The amount of time to wait before performing the action. /// |
return | void |