Home
last modified time | relevance | path

Searched refs:GetInvocationList (Results 1 – 25 of 77) sorted by relevance

1234

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Dynamic.Runtime/tests/Dynamic.Context/
H A DConformance.dynamic.context.operator.compound.event.-=.cs53 var length = c.E.GetInvocationList().Length; in MainMethod()
119 var length = c.E.GetInvocationList().Length; in MainMethod()
185 var length = c.E.GetInvocationList().Length; in MainMethod()
195 length = c.E.GetInvocationList().Length; in MainMethod()
258 var length = c.E.GetInvocationList().Length; in MainMethod()
263 length = c.E.GetInvocationList().Length; in MainMethod()
319 var length = d.E.GetInvocationList().Length; in MainMethod()
375 var length = d.E.GetInvocationList().Length; in MainMethod()
436 var length = d.E.GetInvocationList().Length; in MainMethod()
1010 length = d.E.GetInvocationList().Length; in MainMethod()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Runtime.InteropServices.WindowsRuntime/tests/System/Runtime/InteropServices/WindowsRuntime/
H A DEventRegistrationTokenTableTests.cs32 Assert.Equal(new Delegate[] { handler }, tokenTable.InvocationList.GetInvocationList()); in AddEventHandler_SingleInvocationList_AddsSingleDelegateToInvocationList()
46 …Assert.Equal(new Delegate[] { handler1, handler2 }, tokenTable.InvocationList.GetInvocationList()); in AddEventHandler_MultipleInvocationList_AddsAllDelegateToInvocationLists()
61 … Assert.Equal(new Delegate[] { handler, handler }, tokenTable.InvocationList.GetInvocationList()); in AddEventHandler_MultipleTimes_AddsEachDelegateToInvocationList()
101 …Assert.Equal(new Delegate[] { handler1, handler2 }, tokenTable.InvocationList.GetInvocationList()); in RemoveEventHandler_Delegate_RemovesFromTable()
120 Assert.Equal(new Delegate[] { handler }, tokenTable.InvocationList.GetInvocationList()); in RemoveEventHandler_MultipleTimes_RemovesSingleDelegateFromTable()
172 … Assert.Equal(new Delegate[] { invocationList }, tokenTable.InvocationList.GetInvocationList()); in InvocationList_SetDelegate_GetReturnsExpected()
/dports/lang/mono/mono-5.10.1.57/mcs/tests/
H A Ddtest-036.cs15 if (c.E.GetInvocationList ().Length != 1) in Main()
19 if (c.D.GetInvocationList ().Length != 1) in Main()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.ComponentModel/
H A DPropertyDescriptorTests.cs910 Assert.AreEqual (2, handler.GetInvocationList ().Length, "#C2"); in GetValueChangedHandler()
911 Assert.AreEqual (handlerA, handler.GetInvocationList () [0], "#C3"); in GetValueChangedHandler()
912 Assert.AreEqual (handlerB, handler.GetInvocationList () [1], "#C4"); in GetValueChangedHandler()
919 Assert.AreEqual (2, handler.GetInvocationList ().Length, "#D2"); in GetValueChangedHandler()
926 Assert.AreEqual (2, handler.GetInvocationList ().Length, "#E2"); in GetValueChangedHandler()
933 Assert.AreEqual (2, handler.GetInvocationList ().Length, "#F2"); in GetValueChangedHandler()
940 Assert.AreEqual (2, handler.GetInvocationList ().Length, "#G2"); in GetValueChangedHandler()
947 Assert.AreEqual (3, handler.GetInvocationList ().Length, "#H2"); in GetValueChangedHandler()
954 Assert.AreEqual (2, handler.GetInvocationList ().Length, "#I2"); in GetValueChangedHandler()
955 Assert.AreEqual (handlerA, handler.GetInvocationList () [0], "#I3"); in GetValueChangedHandler()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/src/System/
H A DMulticastDelegate.cs135 public override sealed Delegate[] GetInvocationList() in GetInvocationList() method in System.MulticastDelegate
137 return base.GetInvocationList(); in GetInvocationList()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap.Events/
H A DPSearchEventSource.cs109 nListeners = search_result_event.GetInvocationList().Length; in GetListeners()
112 nListeners += search_referral_event.GetInvocationList().Length; in GetListeners()
H A DLdapEventSource.cs87 nListeners += directory_event.GetInvocationList().Length; in GetCurrentListenersState()
91 nListeners += directory_exception_event.GetInvocationList().Length; in GetCurrentListenersState()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.Activities/
H A DCodeExpressionRuleDeclaration.cs64 …EventHandler<ConditionalEventArgs>[] eventHandlers = base.GetInvocationList<EventHandler<Condition… in Evaluate()
95 …if (codeCondition.GetInvocationList<EventHandler<ConditionalEventArgs>>(CodeCondition.ConditionEve… in Validate()
H A DCode.cs75 … if (code.GetInvocationList<EventHandler>(CodeActivity.ExecuteCodeEvent).Length == 0 && in Validate()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Runtime/tests/System/
H A DMulticastDelegateTests.cs12 public static void GetInvocationList() in GetInvocationList() method in System.Tests.MulticastDelegateTests
15 Delegate[] delegates = dfoo.GetInvocationList(); in GetInvocationList()
178 Delegate[] invokeList = combo.GetInvocationList(); in CheckInvokeList()
191 Delegate[] invokeList = actual.GetInvocationList(); in CheckIsSingletonDelegate()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Management/src/System/Management/
H A DManagementOperationWatcher.cs245 result = ((Progress.GetInvocationList ()).Length > 0);
428 foreach (Delegate d in md.GetInvocationList()) in FireEventToDelegates()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/runtime/interopservices/windowsruntime/
H A Dwindowsruntimemetadata.cs82 Delegate[] ds = eventHandler.GetInvocationList(); in OnReflectionOnlyNamespaceResolveEvent()
117 Delegate[] ds = eventHandler.GetInvocationList(); in OnDesignerNamespaceResolveEvent()
H A Deventregistrationtokentable.cs162 Delegate[] invocationList = ((Delegate)(object)handler).GetInvocationList(); in GetPreferredToken()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap.Events.Edir/
H A DEdirEventSource.cs75 nListeners = edir_event.GetInvocationList().Length; in GetListeners()
/dports/misc/gedkeeper/GEDKeeper-2.19.1/projects/GKMap/GKMap.Core/
H A DObservableCollectionThreadSafe.cs227 …onitor.Busy && (fCollectionChanged != null)) && (fCollectionChanged.GetInvocationList().Length > 1… in CheckReentrancy()
282 Delegate[] delegates = fCollectionChanged.GetInvocationList(); in OnCollectionChanged()
/dports/lang/mono/mono-5.10.1.57/mcs/class/RabbitMQ.Client/src/client/impl/
H A DModelBase.cs226 foreach (ModelShutdownEventHandler h in handler.GetInvocationList()) { in OnModelShutdown()
248 foreach (BasicReturnEventHandler h in handler.GetInvocationList()) { in OnBasicReturn()
267 foreach (CallbackExceptionEventHandler h in handler.GetInvocationList()) { in OnCallbackException()
H A DConnectionBase.cs901 foreach (ConnectionShutdownEventHandler h in handler.GetInvocationList()) { in OnShutdown()
921 foreach (CallbackExceptionEventHandler h in handler.GetInvocationList()) { in OnCallbackException()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite_2.0/
H A DSQLiteDataAdapter.cs96 Delegate[] invocationList = mcd.GetInvocationList(); in FindBuilder()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.Reflection.Execution/src/Internal/Reflection/Extensions/NonPortable/
H A DDelegateMethodInfoRetriever.cs24 Delegate[] invokeList = del.GetInvocationList(); in GetDelegateMethodInfo()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.ComponentModel/AuthoringOM/
H A DDependencyObject.cs553 T[] IDependencyObjectAccessor.GetInvocationList<T>(DependencyProperty dependencyEvent) in IDependencyObjectAccessor.GetInvocationList()
555 return this.GetInvocationList<T>(dependencyEvent); in IDependencyObjectAccessor.GetInvocationList()
557 protected T[] GetInvocationList<T>(DependencyProperty dependencyEvent) in GetInvocationList() method in System.Workflow.ComponentModel.DependencyObject
H A DActivityInterfaces.cs113 T[] GetInvocationList<T>(DependencyProperty dependencyEvent); in GetInvocationList() method
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/System/
H A DDelegateSerializationHolder.cs137 Delegate[] delegates = instance.GetInvocationList (); in GetDelegateData()
/dports/www/xsp/xsp-4.5/src/Mono.WebServer/
H A DBaseRequestBroker.cs182 Delegate[] handlers = UnregisterRequestEvent.GetInvocationList (); in DoUnregisterRequest()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ObjectModel/src/System/Collections/ObjectModel/
H A DObservableCollection.cs302 if (CollectionChanged?.GetInvocationList().Length > 1) in CheckReentrancy()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/collections/objectmodel/
H A Dobservablecollection.cs323 … if ((CollectionChanged != null) && (CollectionChanged.GetInvocationList().Length > 1)) in CheckReentrancy()

1234