IWorkItemScheduler.QueueAction Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
QueueAction(Action) |
Schedules an action for execution by this instance. |
QueueAction(Action<Object>, Object) |
Schedules a work item for execution by this instance. |
QueueAction(Action)
Schedules an action for execution by this instance.
public void QueueAction (Action action);
abstract member QueueAction : Action -> unit
Public Sub QueueAction (action As Action)
Parameters
- action
- Action
The action.
Applies to
QueueAction(Action<Object>, Object)
Schedules a work item for execution by this instance.
public void QueueAction (Action<object> action, object state);
abstract member QueueAction : Action<obj> * obj -> unit
Public Sub QueueAction (action As Action(Of Object), state As Object)
Parameters
- state
- Object
The state passed when invoking the item.