|
ActionExtensionsDelayAndExecute(Action, Int32) Method
|
Execute an action on the thread pool after a specified number of milliseconds.
Namespace: GSF.ThreadingAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.255-beta+d64b121002b51165b41b0dbf6ccf4c8d3895faa3
Syntax<ExtensionAttribute>
Public Shared Function DelayAndExecute (
action As Action,
delay As Integer
) As ICancellationToken
public:
[ExtensionAttribute]
static ICancellationToken^ DelayAndExecute(
Action^ action,
int delay
)
[<ExtensionAttribute>]
static member DelayAndExecute :
action : Action *
delay : int -> ICancellationToken
GSF.Threading.ActionExtensions.DelayAndExecute = function(action, delay);
View SourceParameters
- action Action
- The action to be executed.
- delay Int32
- The amount of time to wait before execution, in milliseconds.
Return Value
ICancellationTokenA cancellation token that can be used to cancel the operation.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Action. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also