5 references to GetInvocationList
Microsoft.TestPlatform.CoreUtilities (1)
Utilities\MulticastDelegateUtilities.cs (1)
51
var invocationList = delegates.
GetInvocationList
();
PresentationCore (2)
System\Windows\EventHelper.cs (2)
29
Tuple<T, Delegate[]> newTuple = combinedDelegate != null ? Tuple.Create(combinedDelegate, combinedDelegate.
GetInvocationList
()) : null;
46
Tuple<T, Delegate[]> newTuple = delegateWithRemoval != null ? Tuple.Create(delegateWithRemoval, delegateWithRemoval.
GetInvocationList
()) : null;
PresentationFramework (1)
MS\Internal\AppModel\ReturnEventSaver.cs (1)
56
delegates = (pf._Return).
GetInvocationList
();
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\ContractHelper.cs (1)
49
foreach (EventHandler<ContractFailedEventArgs> handler in contractFailedEventLocal.
GetInvocationList
())