NativeActivityMetadata.AddImplementationChild(Activity) Method

Definition

Adds the specified activity to the metadata's list of implementation activities.

public:
 void AddImplementationChild(System::Activities::Activity ^ implementationChild);
public void AddImplementationChild (System.Activities.Activity implementationChild);
member this.AddImplementationChild : System.Activities.Activity -> unit
Public Sub AddImplementationChild (implementationChild As Activity)

Parameters

implementationChild
Activity

The activity to add.

Remarks

An activity added using AddImplementationChild is a child activity that the parent activity can schedule directly. These activities are implementation details of the activity. These activities (and any activities they add using AddChild or AddImportedChild) have access to this activity's arguments as well as variables added through AddImplementationVariable.

Applies to