'Declaration
Function Execute( _ ByVal taskDefinition As ICustomObjectSettings, _ ByVal context As ITaskExecutionContext, _ ByRef returnvalue As Object _ ) As Boolean
bool Execute( ICustomObjectSettings taskDefinition, ITaskExecutionContext context, out object returnvalue )
Parameters
- taskDefinition
- The task definition
- context
- returnvalue
- An optional return value for the task. This will be stored in the job history and is available to Responses and other job steps. The value returned here does not determine the success or failure of the step; that is determined by the return value of the method.
Return Value
True if the step should be reported as successful, False if it should be reported as failed.