AddArrayIntoArrayListActivity.Execute method
Appends an ArrayList object to the end of another specified ArrayList object.
Namespace: Microsoft.SharePoint.WorkflowActions
Assembly: Microsoft.SharePoint.WorkflowActions (in Microsoft.SharePoint.WorkflowActions.dll)
Syntax
'Declaration
Protected Overrides Function Execute ( _
provider As ActivityExecutionContext _
) As ActivityExecutionStatus
'Usage
Dim provider As ActivityExecutionContext
Dim returnValue As ActivityExecutionStatus
returnValue = Me.Execute(provider)
protected override ActivityExecutionStatus Execute(
ActivityExecutionContext provider
)
Parameters
provider
Type: System.Workflow.ComponentModel.ActivityExecutionContextThe execution environment that is associated with this Activity.
Return value
Type: System.Workflow.ComponentModel.ActivityExecutionStatus
The status of the operation.
Remarks
The workflow runtime calls this override to append an ArrayList object to the end of another specified ArrayList object.
This override appends the ArrayList object specified by the Value property to the end of the ArrayList object specified by the ReturnValue property.
This override always returns Closed.
See also
Reference
AddArrayIntoArrayListActivity class