NativeActivityMetadata.AddImplementationChild(Activity) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.