ActivityMetadata.AddImportedChild 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 imported child activities.
Overloads
AddImportedChild(Activity) |
Adds the specified activity to the metadata's list of imported child activities. |
AddImportedChild(Activity, Object) |
Adds the specified activity to the metadata's list of imported child activities. |
AddImportedChild(Activity)
Adds the specified activity to the metadata's list of imported child activities.
public:
void AddImportedChild(System::Activities::Activity ^ importedChild);
public void AddImportedChild (System.Activities.Activity importedChild);
member this.AddImportedChild : System.Activities.Activity -> unit
Public Sub AddImportedChild (importedChild As Activity)
Parameters
- importedChild
- Activity
The activity to add.
Remarks
An imported child activity is a child activity that the parent activity does not schedule directly. Rather, then parent uses this activity to configure some other child activity.
Applies to
AddImportedChild(Activity, Object)
Adds the specified activity to the metadata's list of imported child activities.
public:
void AddImportedChild(System::Activities::Activity ^ importedChild, System::Object ^ origin);
public void AddImportedChild (System.Activities.Activity importedChild, object origin);
member this.AddImportedChild : System.Activities.Activity * obj -> unit
Public Sub AddImportedChild (importedChild As Activity, origin As Object)
Parameters
- importedChild
- Activity
The activity to add.
- origin
- Object
The origin.