1 override of GetInvocationList
System.Private.CoreLib (1)
src\System\MulticastDelegate.CoreCLR.cs (1)
401public sealed override Delegate[] GetInvocationList()
3 references to GetInvocationList
PresentationCore (2)
System\Windows\EventHelper.cs (2)
29Tuple<T, Delegate[]> newTuple = combinedDelegate != null ? Tuple.Create(combinedDelegate, combinedDelegate.GetInvocationList()) : null; 46Tuple<T, Delegate[]> newTuple = delegateWithRemoval != null ? Tuple.Create(delegateWithRemoval, delegateWithRemoval.GetInvocationList()) : null;
PresentationFramework (1)
MS\Internal\AppModel\ReturnEventSaver.cs (1)
56delegates = (pf._Return).GetInvocationList();