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