 | ITaskHandlerStart Method |
Called to start the COM handler. This method must be implemented by the handler.
Namespace:
Microsoft.Win32.TaskScheduler
Assembly:
Microsoft.Win32.TaskScheduler (in Microsoft.Win32.TaskScheduler.dll) Version: 2.10.1
Syntaxvoid Start(
Object pHandlerServices,
string data
)
Sub Start (
pHandlerServices As Object,
data As String
)
void Start(
[InAttribute] Object^ pHandlerServices,
[InAttribute] String^ data
)
Parameters
- pHandlerServices
- Type: SystemObject
An IUnkown interface that is used to communicate back with the Task Scheduler. - data
- Type: SystemString
The arguments that are required by the handler. These arguments are defined in the Data property of the COM handler action.
See Also