ITaskHandler.Start Method (Object, String)

 

Called to start the COM handler. This method must be implemented by the handler.

Namespace:   Microsoft.Storage
Assembly:  srmlib (in srmlib.dll)

Syntax

void Start(
    object pHandlerServices,
    string data
)
void Start(
    Object^ pHandlerServices,
    String^ data
)
abstract Start : 
        pHandlerServices:Object *
        data:string -> unit
Sub Start (
    pHandlerServices As Object,
    data As String
)

Parameters

  • pHandlerServices
    Type: System.Object

    An object that is used to communicate back with the Task Scheduler.

  • data
    Type: System.String

    The arguments that are required by the handler. These arguments are defined in the Data property of the COM handler action.

See Also

ITaskHandler Interface
Microsoft.Storage Namespace

Return to top