|   | ActionExtensionsDelayAndExecute(Action, WaitHandle, 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.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntaxpublic static void DelayAndExecute(
	this Action action,
	WaitHandle waitObj,
	int delay
)
<ExtensionAttribute>
Public Shared Sub DelayAndExecute ( 
	action As Action,
	waitObj As WaitHandle,
	delay As Integer
)
public:
[ExtensionAttribute]
static void DelayAndExecute(
	Action^ action, 
	WaitHandle^ waitObj, 
	int delay
)
[<ExtensionAttribute>]
static member DelayAndExecute : 
        action : Action * 
        waitObj : WaitHandle * 
        delay : int -> unit GSF.Threading.ActionExtensions.DelayAndExecute = function(action, waitObj, delay);
Parameters
- action  Action
- The action to be executed.
- waitObj  WaitHandle
- The wait handle to be used to cancel execution.
- delay  Int32
- The amount of time to wait before execution, in milliseconds.
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
See Also