Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Queues a work item to the InOrderThreadPoolQueue at high priority.
Namespace:   Microsoft.WindowsServerSolutions.Common.ProviderFramework
Assembly:  ProviderFramework (in ProviderFramework.dll)
Syntax
public void QueueHighPriorityAction(
    Action action
)
public:
void QueueHighPriorityAction(
    Action^ action
)
Public Sub QueueHighPriorityAction (
    action As Action
)
Parameters
- action 
 Type: System.Action- The work item to perform on a threadpool thread. 
Remarks
The action is not started until all previous high-priority work items finish, but before any other normal-priority items.
See Also
InOrderThreadPoolQueue Class
Microsoft.WindowsServerSolutions.Common.ProviderFramework Namespace
Return to top