Base:
method
GetInvocationList
System.Delegate.GetInvocationList()
35 references to GetInvocationList
mscorlib (10)
system\appdomain.cs (5)
152Delegate[] list= curr.GetInvocationList(); 3126Delegate[] ds = eventHandler.GetInvocationList(); 3146Delegate[] ds = eventHandler.GetInvocationList(); 3169Delegate[] ds = eventHandler.GetInvocationList(); 3188Delegate[] ds = eventHandler.GetInvocationList();
system\console.cs (1)
1829Contract.Assert(_cancelCallbacks == null || _cancelCallbacks.GetInvocationList().Length > 0, "Teach Console::CancelKeyPress to handle a non-null but empty list of callbacks");
system\diagnostics\contracts\contractsbcl.cs (1)
359foreach (EventHandler<ContractFailedEventArgs> handler in contractFailedEventLocal.GetInvocationList())
system\reflection\assembly.cs (1)
2850Delegate[] ds = moduleResolve.GetInvocationList();
system\runtime\interopservices\windowsruntime\windowsruntimemetadata.cs (2)
82Delegate[] ds = eventHandler.GetInvocationList(); 117Delegate[] ds = eventHandler.GetInvocationList();
PresentationCore (6)
Core\CSharp\System\Windows\Input\InputManager.cs (4)
917Delegate[] handlers = _preProcessInput.GetInvocationList(); 940Delegate[] handlers = _preNotifyInput.GetInvocationList(); 1046Delegate[] handlers = _postNotifyInput.GetInvocationList(); 1117Delegate[] handlers = postProcessInput.GetInvocationList();
Core\CSharp\System\Windows\Interop\HwndSource.cs (2)
287Delegate[] handlers = parameters.HwndSourceHook.GetInvocationList(); 1877Delegate[] handlers = _hooks.GetInvocationList();
PresentationFramework (2)
src\Framework\MS\Internal\Data\ValueChangedEventManager.cs (2)
99if (handler.GetInvocationList().Length != 1) 112if (handler.GetInvocationList().Length != 1)
System (2)
compmod\system\collections\objectmodel\observablecollection.cs (1)
321if ((CollectionChanged != null) && (CollectionChanged.GetInvocationList().Length > 1))
compmod\system\componentmodel\BindingList.cs (1)
324return onAddingNew != null && onAddingNew.GetInvocationList().Length > 0;
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\Hosting\WindowHelperService.cs (2)
91Delegate[] initial = this.listeners.GetInvocationList(); 119Delegate[] list = this.listeners.GetInvocationList();
System.Data (3)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Hosting\WindowHelperService.cs (2)
91Delegate[] initial = this.listeners.GetInvocationList(); 119Delegate[] list = this.listeners.GetInvocationList();
fx\src\data\System\Data\Common\AdapterUtil.cs (1)
1869Delegate[] d = mcd.GetInvocationList();
System.Data.Entity (1)
System\Data\Objects\ObjectContext.cs (1)
476get { return _onObjectMaterialized != null && _onObjectMaterialized.GetInvocationList().Length != 0; }
System.Management (2)
managementoperationwatcher.cs (2)
245result = ((Progress.GetInvocationList ()).Length > 0); 463foreach (Delegate d in md.GetInvocationList())
System.Web (3)
HttpApplication.cs (2)
1734Delegate[] handlers = handler.GetInvocationList(); 2615Delegate[] handlers = handler.GetInvocationList();
SiteMapProvider.cs (1)
374Delegate[] ds = eventHandler.GetInvocationList();
System.Workflow.ComponentModel (2)
AuthoringOM\Activity.cs (2)
1259invocationList = activityDefinitionResolve.GetInvocationList(); 1283invocationList = workflowChangeActionsResolve.GetInvocationList();
WindowsBase (2)
Base\System\Windows\Interop\ComponentDispatcherThread.cs (1)
229foreach (ThreadMessageEventHandler testHandler in _threadPreprocessMessage.GetInvocationList())
Base\System\Windows\PropertyMetadata.cs (1)
597Delegate[] handlers = baseMetadata.PropertyChangedCallback.GetInvocationList();