44 references to Combine
mscorlib (14)
system\delegate.cs (1)
210d = Combine(d,delegates[i]);
system\diagnostics\eventing\eventsource.cs (3)
4202this._EventSourceCreated = (EventHandler<EventSourceCreatedEventArgs>)Delegate.Combine(_EventSourceCreated, value); 5619EventSource.s_activityDying = (Action<Guid>)Delegate.Combine(EventSource.s_activityDying, m_myActivityDelegate); 5646EventSource.s_activityDying = (Action<Guid>)Delegate.Combine(EventSource.s_activityDying, filterList.m_myActivityDelegate);
system\diagnostics\log.cs (2)
81(LogMessageEventHandler) MulticastDelegate.Combine(_LogMessageEventHandler, handler); 96(LogSwitchLevelHandler) MulticastDelegate.Combine(_LogSwitchLevelHandler, handler);
system\Runtime\InteropServices\ComEventsMethod.cs (1)
174_delegateWrappers[i].Delegate = Delegate.Combine(_delegateWrappers[i].Delegate, d);
system\runtime\interopservices\windowsruntime\eventregistrationtokentable.cs (1)
93invokeList = MulticastDelegate.Combine(invokeList, (Delegate)(object)handler);
system\runtime\serialization\objectmanager.cs (1)
1115m_onDeserializationHandler = (DeserializationEventHandler)Delegate.Combine(m_onDeserializationHandler, handler);
system\runtime\serialization\serializationeventscache.cs (5)
106handler = (SerializationEventHandler)Delegate.Combine(handler, onSerializing); 125handler = (SerializationEventHandler)Delegate.Combine(handler, onDeserializing); 144handler = (SerializationEventHandler)Delegate.Combine(handler, onDeserialized); 160handler = (SerializationEventHandler)Delegate.Combine(handler, onSerialized); 176handler = (SerializationEventHandler)Delegate.Combine(handler, onDeserialized);
PresentationCore (1)
Core\CSharp\System\Windows\EventHandlersStore.cs (1)
78_entries[key.GlobalIndex] = Delegate.Combine(existingDelegate, handler);
PresentationFramework (2)
src\Framework\System\Windows\Data\CollectionViewSource.cs (1)
621handlers = (FilterEventHandler)Delegate.Combine(handlers, value);
src\Framework\System\Windows\Navigation\PageFunction.cs (1)
121_returnHandler = Delegate.Combine(_returnHandler, d);
System (3)
compmod\system\componentmodel\EventHandlerList.cs (1)
75e.handler = Delegate.Combine(e.handler, value);
compmod\system\componentmodel\PropertyDescriptor.cs (1)
163valueChangedHandlers[component] = Delegate.Combine(h, handler);
compmod\system\componentmodel\ReflectEventDescriptor.cs (1)
206eventdesc = Delegate.Combine(eventdesc, value);
System.Activities.Presentation (4)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\ContextItemManager.cs (1)
269existing = Delegate.Combine(existing, d);
System.Activities.Presentation\System\Activities\Presentation\Base\Core\EditingContext.cs (2)
379existing = (SubscribeContextCallback)Delegate.Combine(existing, callback); 642existing = (SubscribeServiceCallback)Delegate.Combine(existing, callback);
System.Activities.Presentation\System\Activities\Presentation\Base\Core\ServiceManager.cs (1)
283existing = Delegate.Combine(existing, d);
System.Data (4)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\ContextItemManager.cs (1)
269existing = Delegate.Combine(existing, d);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\EditingContext.cs (2)
379existing = (SubscribeContextCallback)Delegate.Combine(existing, callback); 642existing = (SubscribeServiceCallback)Delegate.Combine(existing, callback);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\ServiceManager.cs (1)
283existing = Delegate.Combine(existing, d);
System.Transactions (4)
System\Transactions\TransactionManager.cs (1)
70TransactionManager.distributedTransactionStartedDelegate = (TransactionStartedEventHandler)System.Delegate.Combine(TransactionManager.distributedTransactionStartedDelegate, value);
System\Transactions\TransactionState.cs (3)
1160System.Delegate.Combine( tx.transactionCompletedDelegate, transactionCompletedDelegate ); 2601System.Delegate.Combine( tx.transactionCompletedDelegate, transactionCompletedDelegate ); 4343System.Delegate.Combine(tx.transactionCompletedDelegate, transactionCompletedDelegate);
System.Web (4)
UI\DataBindingCollection.cs (1)
125changedEvent = (EventHandler)Delegate.Combine(changedEvent, value);
UI\ExpressionBindingCollection.cs (1)
125changedEvent = (EventHandler)Delegate.Combine(changedEvent, value);
UI\WebControls\MethodParametersDictionary.cs (1)
35_parametersChangedHandler = (EventHandler)Delegate.Combine(_parametersChangedHandler, value);
UI\WebControls\ParameterCollection.cs (1)
84_parametersChangedHandler = (EventHandler)Delegate.Combine(_parametersChangedHandler, value);
System.Windows.Forms (3)
winforms\Managed\System\WinForms\DataGridCaption.cs (1)
295e.handler = Delegate.Combine(e.handler, handler);
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (1)
2664e.handler = Delegate.Combine(e.handler, handler);
winforms\Managed\System\WinForms\ToolStripManager.cs (1)
150staticEventHandlers[key] = Delegate.Combine(staticEventHandlers[key], value);
System.Workflow.ComponentModel (1)
AuthoringOM\DependencyObject.cs (1)
419delegateHandler = Delegate.Combine(delegateHandler, handlers[i] as Delegate);
WindowsBase (4)
Base\System\Windows\DependencyObject.cs (1)
2741handlers = (EventHandler)Delegate.Combine(handlers, value);
Base\System\Windows\Interop\ComponentDispatcherThread.cs (1)
211_threadPreprocessMessage = (ThreadMessageEventHandler)Delegate.Combine(handler, _threadPreprocessMessage);
Base\System\Windows\Threading\DispatcherOperation.cs (2)
382_aborted = (EventHandler) Delegate.Combine(_aborted, value); 409_completed = (EventHandler) Delegate.Combine(_completed, value);