Home
last modified time | relevance | path

Searched refs:importedDelegate (Results 1 – 3 of 3) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Activities/System/Activities/
H A DActivityMetadata.cs178 public void AddImportedDelegate(ActivityDelegate importedDelegate) in AddImportedDelegate()
180 AddImportedDelegate(importedDelegate, null); in AddImportedDelegate()
183 public void AddImportedDelegate(ActivityDelegate importedDelegate, object origin) in AddImportedDelegate()
188 if (importedDelegate != null) in AddImportedDelegate()
190 this.activity.AddImportedDelegate(importedDelegate); in AddImportedDelegate()
191 … if (importedDelegate.Handler != null && importedDelegate.Handler.CacheId != this.activity.CacheId) in AddImportedDelegate()
193 importedDelegate.Handler.Origin = origin; in AddImportedDelegate()
H A DNativeActivityMetadata.cs275 public void AddImportedDelegate(ActivityDelegate importedDelegate) in AddImportedDelegate()
277 AddImportedDelegate(importedDelegate, null); in AddImportedDelegate()
280 public void AddImportedDelegate(ActivityDelegate importedDelegate, object origin) in AddImportedDelegate()
285 if (importedDelegate != null) in AddImportedDelegate()
287 this.activity.AddImportedDelegate(importedDelegate); in AddImportedDelegate()
288 … if (importedDelegate.Handler != null && importedDelegate.Handler.CacheId != this.activity.CacheId) in AddImportedDelegate()
290 importedDelegate.Handler.Origin = origin; in AddImportedDelegate()
H A DActivity.cs673 internal void AddImportedDelegate(ActivityDelegate importedDelegate) in AddImportedDelegate() argument
680 this.importedDelegates.Add(importedDelegate); in AddImportedDelegate()