ActivityMetadata.AddImportedDelegate 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 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.