ActivityMetadata.AddImportedDelegate Method

Definition

Adds the specified delegate to the metadata's list of imported delegates.

Overloads

AddImportedDelegate(ActivityDelegate)

Adds the specified delegate to the metadata's list of imported delegates.

AddImportedDelegate(ActivityDelegate, Object)

Adds the specified delegate to the metadata's list of imported delegates.

AddImportedDelegate(ActivityDelegate)

Adds the specified delegate to the metadata's list of imported delegates.

public:
 void AddImportedDelegate(System::Activities::ActivityDelegate ^ importedDelegate);
public void AddImportedDelegate (System.Activities.ActivityDelegate importedDelegate);
member this.AddImportedDelegate : System.Activities.ActivityDelegate -> unit
Public Sub AddImportedDelegate (importedDelegate As ActivityDelegate)

Parameters

importedDelegate
ActivityDelegate

The delegate to add.

Remarks

An imported ActivityDelegate is an ActivityDelegate that the parent activity does not invoke directly. Rather, the parent uses this ActivityDelegate to configure some other child activity.

Applies to

AddImportedDelegate(ActivityDelegate, Object)

Adds the specified delegate to the metadata's list of imported delegates.

public:
 void AddImportedDelegate(System::Activities::ActivityDelegate ^ importedDelegate, System::Object ^ origin);
public void AddImportedDelegate (System.Activities.ActivityDelegate importedDelegate, object origin);
member this.AddImportedDelegate : System.Activities.ActivityDelegate * obj -> unit
Public Sub AddImportedDelegate (importedDelegate As ActivityDelegate, origin As Object)

Parameters

importedDelegate
ActivityDelegate

The delegate to add.

origin
Object

The origin.

Applies to