919 references to EventHandler
mscorlib (35)
system\appdomain.cs (2)
348private EventHandler<FirstChanceExceptionEventArgs> _firstChanceException; 3088public event EventHandler<FirstChanceExceptionEventArgs> FirstChanceException
system\diagnostics\contracts\contractsbcl.cs (5)
125public static event EventHandler<ContractFailedEventArgs> ContractFailed { 278private static volatile EventHandler<ContractFailedEventArgs> contractFailedEvent; 293internal static event EventHandler<ContractFailedEventArgs> InternalContractFailed 355EventHandler<ContractFailedEventArgs> contractFailedEventLocal = contractFailedEvent; 359foreach (EventHandler<ContractFailedEventArgs> handler in contractFailedEventLocal.GetInvocationList())
system\diagnostics\eventing\eventsource.cs (12)
687public event EventHandler<EventCommandEventArgs> EventCommandExecuted 2736var eventCommandCallback = this.m_eventCommandExecuted; 2824var eventCommandCallback = m_eventCommandExecuted; 4050private EventHandler<EventCommandEventArgs> m_eventCommandExecuted; 4180private event EventHandler<EventSourceCreatedEventArgs> _EventSourceCreated; 4194public event EventHandler<EventSourceCreatedEventArgs> EventSourceCreated 4202this._EventSourceCreated = (EventHandler<EventSourceCreatedEventArgs>)Delegate.Combine(_EventSourceCreated, value); 4209this._EventSourceCreated = (EventHandler<EventSourceCreatedEventArgs>)Delegate.Remove(_EventSourceCreated, value); 4218public event EventHandler<EventWrittenEventArgs> EventWritten; 4369EventHandler<EventSourceCreatedEventArgs> callBack = this._EventSourceCreated; 4385EventHandler<EventWrittenEventArgs> callBack = this.EventWritten; 4585private void CallBackForExistingEventSources(bool addToListenersList, EventHandler<EventSourceCreatedEventArgs> callback)
system\exception.cs (1)
541protected event EventHandler<SafeSerializationEventArgs> SerializeObjectState
system\progress.cs (3)
77public event EventHandler<T> ProgressChanged; 87EventHandler<T> changedEvent = ProgressChanged; 107EventHandler<T> changedEvent = ProgressChanged;
system\runtime\interopservices\windowsruntime\windowsruntimemetadata.cs (6)
75public static event EventHandler<NamespaceResolveEventArgs> ReflectionOnlyNamespaceResolve; 79EventHandler<NamespaceResolveEventArgs> eventHandler = ReflectionOnlyNamespaceResolve; 88((EventHandler<NamespaceResolveEventArgs>)ds[i])(appDomain, eventArgs); 110public static event EventHandler<DesignerNamespaceResolveEventArgs> DesignerNamespaceResolve; 114EventHandler<DesignerNamespaceResolveEventArgs> eventHandler = DesignerNamespaceResolve; 123((EventHandler<DesignerNamespaceResolveEventArgs>)ds[i])(appDomain, eventArgs);
system\runtime\serialization\safeserializationmanager.cs (2)
279internal event EventHandler<SafeSerializationEventArgs> SerializeObjectState; 336EventHandler<SafeSerializationEventArgs> serializeObjectStateEvent = SerializeObjectState;
system\threading\Tasks\IAsyncCausalityTracerStatics.cs (1)
31EventRegistrationToken add_TracingStatusChanged(System.EventHandler<TracingStatusChangedEventArgs> eventHandler);
system\threading\Tasks\TaskScheduler.cs (3)
466private static EventHandler<UnobservedTaskExceptionEventArgs> _unobservedTaskException; 479public static event EventHandler<UnobservedTaskExceptionEventArgs> UnobservedTaskException 518EventHandler<UnobservedTaskExceptionEventArgs> handler = _unobservedTaskException;
PresentationCore (93)
Core\CSharp\System\Windows\Diagnostics\VisualDiagnostics.cs (4)
35private static event EventHandler<VisualTreeChangeEventArgs> s_visualTreeChanged; 67public static event EventHandler<VisualTreeChangeEventArgs> VisualTreeChanged 118EventHandler<VisualTreeChangeEventArgs> visualTreeChanged = VisualDiagnostics.s_visualTreeChanged; 150EventHandler<VisualTreeChangeEventArgs> visualTreeChanged,
Core\CSharp\System\Windows\Generated\ContentElement.cs (10)
2121public event EventHandler<TouchEventArgs> PreviewTouchDown 2141public event EventHandler<TouchEventArgs> TouchDown 2161public event EventHandler<TouchEventArgs> PreviewTouchMove 2181public event EventHandler<TouchEventArgs> TouchMove 2201public event EventHandler<TouchEventArgs> PreviewTouchUp 2221public event EventHandler<TouchEventArgs> TouchUp 2241public event EventHandler<TouchEventArgs> GotTouchCapture 2261public event EventHandler<TouchEventArgs> LostTouchCapture 2281public event EventHandler<TouchEventArgs> TouchEnter 2301public event EventHandler<TouchEventArgs> TouchLeave
Core\CSharp\System\Windows\Generated\UIElement.cs (10)
4399public event EventHandler<TouchEventArgs> PreviewTouchDown 4419public event EventHandler<TouchEventArgs> TouchDown 4439public event EventHandler<TouchEventArgs> PreviewTouchMove 4459public event EventHandler<TouchEventArgs> TouchMove 4479public event EventHandler<TouchEventArgs> PreviewTouchUp 4499public event EventHandler<TouchEventArgs> TouchUp 4519public event EventHandler<TouchEventArgs> GotTouchCapture 4539public event EventHandler<TouchEventArgs> LostTouchCapture 4559public event EventHandler<TouchEventArgs> TouchEnter 4579public event EventHandler<TouchEventArgs> TouchLeave
Core\CSharp\System\Windows\Generated\UIElement3D.cs (10)
1827public event EventHandler<TouchEventArgs> PreviewTouchDown 1847public event EventHandler<TouchEventArgs> TouchDown 1867public event EventHandler<TouchEventArgs> PreviewTouchMove 1887public event EventHandler<TouchEventArgs> TouchMove 1907public event EventHandler<TouchEventArgs> PreviewTouchUp 1927public event EventHandler<TouchEventArgs> TouchUp 1947public event EventHandler<TouchEventArgs> GotTouchCapture 1967public event EventHandler<TouchEventArgs> LostTouchCapture 1987public event EventHandler<TouchEventArgs> TouchEnter 2007public event EventHandler<TouchEventArgs> TouchLeave
Core\CSharp\System\Windows\Input\Command\CanExecuteChangedEventManager.cs (12)
47public static void AddHandler(ICommand source, EventHandler<EventArgs> handler) 59public static void RemoveHandler(ICommand source, EventHandler<EventArgs> handler) 142EventHandler<EventArgs> handler = sink.Handler; 195private void PrivateAddHandler(ICommand source, EventHandler<EventArgs> handler) 213private void PrivateRemoveHandler(ICommand source, EventHandler<EventArgs> handler) 371public HandlerSink(CanExecuteChangedEventManager manager, ICommand source, EventHandler<EventArgs> originalHandler) 417public EventHandler<EventArgs> Handler 419get { return (_originalHandler != null) ? (EventHandler<EventArgs>)_originalHandler.Target : null; } 422public bool Matches(ICommand source, EventHandler<EventArgs> handler) 425(_originalHandler != null && (EventHandler<EventArgs>)_originalHandler.Target == handler); 469EventHandler<EventArgs> handler = (EventHandler<EventArgs>)_originalHandler.Target;
Core\CSharp\System\Windows\Input\Manipulation.cs (6)
22internal static readonly RoutedEvent ManipulationStartingEvent = EventManager.RegisterRoutedEvent("ManipulationStarting", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationStartingEventArgs>), typeof(ManipulationDevice)); 23internal static readonly RoutedEvent ManipulationStartedEvent = EventManager.RegisterRoutedEvent("ManipulationStarted", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationStartedEventArgs>), typeof(ManipulationDevice)); 24internal static readonly RoutedEvent ManipulationDeltaEvent = EventManager.RegisterRoutedEvent("ManipulationDelta", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationDeltaEventArgs>), typeof(ManipulationDevice)); 25internal static readonly RoutedEvent ManipulationInertiaStartingEvent = EventManager.RegisterRoutedEvent("ManipulationInertiaStarting", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationInertiaStartingEventArgs>), typeof(ManipulationDevice)); 26internal static readonly RoutedEvent ManipulationBoundaryFeedbackEvent = EventManager.RegisterRoutedEvent("ManipulationBoundaryFeedback", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationBoundaryFeedbackEventArgs>), typeof(ManipulationDevice)); 27internal static readonly RoutedEvent ManipulationCompletedEvent = EventManager.RegisterRoutedEvent("ManipulationCompleted", RoutingStrategy.Bubble, typeof(EventHandler<ManipulationCompletedEventArgs>), typeof(ManipulationDevice));
Core\CSharp\System\Windows\Input\ManipulationBoundaryFeedbackEventArgs.cs (1)
54((EventHandler<ManipulationBoundaryFeedbackEventArgs>)genericHandler)(genericTarget, this);
Core\CSharp\System\Windows\Input\ManipulationCompletedEventArgs.cs (1)
70((EventHandler<ManipulationCompletedEventArgs>)genericHandler)(genericTarget, this);
Core\CSharp\System\Windows\Input\ManipulationDeltaEventArgs.cs (1)
77((EventHandler<ManipulationDeltaEventArgs>)genericHandler)(genericTarget, this);
Core\CSharp\System\Windows\Input\ManipulationInertiaStartingEventArgs.cs (1)
66((EventHandler<ManipulationInertiaStartingEventArgs>)genericHandler)(genericTarget, this);
Core\CSharp\System\Windows\Input\ManipulationLogic.cs (2)
644internal event EventHandler<EventArgs> ContainerLayoutUpdated 786private EventHandler<EventArgs> _containerLayoutUpdated;
Core\CSharp\System\Windows\Input\ManipulationStartedEventArgs.cs (1)
54((EventHandler<ManipulationStartedEventArgs>)genericHandler)(genericTarget, this);
Core\CSharp\System\Windows\Input\ManipulationStartingEventArgs.cs (1)
127((EventHandler<ManipulationStartingEventArgs>)genericHandler)(genericTarget, this);
Core\CSharp\System\Windows\Input\Touch.cs (10)
15internal static readonly RoutedEvent PreviewTouchDownEvent = EventManager.RegisterRoutedEvent("PreviewTouchDown", RoutingStrategy.Tunnel, typeof(EventHandler<TouchEventArgs>), typeof(Touch)); 16internal static readonly RoutedEvent TouchDownEvent = EventManager.RegisterRoutedEvent("TouchDown", RoutingStrategy.Bubble, typeof(EventHandler<TouchEventArgs>), typeof(Touch)); 18internal static readonly RoutedEvent PreviewTouchMoveEvent = EventManager.RegisterRoutedEvent("PreviewTouchMove", RoutingStrategy.Tunnel, typeof(EventHandler<TouchEventArgs>), typeof(Touch)); 19internal static readonly RoutedEvent TouchMoveEvent = EventManager.RegisterRoutedEvent("TouchMove", RoutingStrategy.Bubble, typeof(EventHandler<TouchEventArgs>), typeof(Touch)); 21internal static readonly RoutedEvent PreviewTouchUpEvent = EventManager.RegisterRoutedEvent("PreviewTouchUp", RoutingStrategy.Tunnel, typeof(EventHandler<TouchEventArgs>), typeof(Touch)); 22internal static readonly RoutedEvent TouchUpEvent = EventManager.RegisterRoutedEvent("TouchUp", RoutingStrategy.Bubble, typeof(EventHandler<TouchEventArgs>), typeof(Touch)); 24internal static readonly RoutedEvent GotTouchCaptureEvent = EventManager.RegisterRoutedEvent("GotTouchCapture", RoutingStrategy.Bubble, typeof(EventHandler<TouchEventArgs>), typeof(Touch)); 25internal static readonly RoutedEvent LostTouchCaptureEvent = EventManager.RegisterRoutedEvent("LostTouchCapture", RoutingStrategy.Bubble, typeof(EventHandler<TouchEventArgs>), typeof(Touch)); 27internal static readonly RoutedEvent TouchEnterEvent = EventManager.RegisterRoutedEvent("TouchEnter", RoutingStrategy.Direct, typeof(EventHandler<TouchEventArgs>), typeof(Touch)); 28internal static readonly RoutedEvent TouchLeaveEvent = EventManager.RegisterRoutedEvent("TouchLeave", RoutingStrategy.Direct, typeof(EventHandler<TouchEventArgs>), typeof(Touch));
Core\CSharp\System\Windows\Input\TouchEventArgs.cs (2)
62EventHandler<TouchEventArgs> handler = (EventHandler<TouchEventArgs>)genericHandler;
Core\CSharp\System\Windows\Interop\HwndTarget.cs (1)
2730public event EventHandler<MonitorPowerEventArgs> MonitorPowerEvent;
Core\CSharp\System\Windows\Media\Imaging\BitmapDecoder.cs (2)
911public virtual event EventHandler<DownloadProgressEventArgs> DownloadProgress 931public virtual event EventHandler<ExceptionEventArgs> DownloadFailed
Core\CSharp\System\Windows\Media\Imaging\BitmapSource.cs (3)
315public virtual event EventHandler<DownloadProgressEventArgs> DownloadProgress 333public virtual event EventHandler<ExceptionEventArgs> DownloadFailed 351public virtual event EventHandler<ExceptionEventArgs> DecodeFailed
Core\CSharp\System\Windows\Media\MediaEventsHelper.cs (2)
113internal event EventHandler<ExceptionEventArgs> MediaFailed 203internal event EventHandler<MediaScriptCommandEventArgs> ScriptCommand
Core\CSharp\System\Windows\Media\MediaPlayer.cs (2)
324public event EventHandler<ExceptionEventArgs> MediaFailed 426public event EventHandler<MediaScriptCommandEventArgs> ScriptCommand
Core\CSharp\System\Windows\Media\MediaPlayerState.cs (2)
575internal event EventHandler<ExceptionEventArgs> MediaFailed 667internal event EventHandler<MediaScriptCommandEventArgs> ScriptCommand
Core\CSharp\System\Windows\Media\UniqueEventHelper.cs (3)
25internal void AddEvent(EventHandler<TEventArgs> handler) 50internal void RemoveEvent(EventHandler<TEventArgs> handler) 87foreach (EventHandler<TEventArgs> handler in htDelegates.Keys)
Core\CSharp\System\Windows\UIElement.cs (6)
4431public event EventHandler<ManipulationStartingEventArgs> ManipulationStarting 4456public event EventHandler<ManipulationStartedEventArgs> ManipulationStarted 4481public event EventHandler<ManipulationDeltaEventArgs> ManipulationDelta 4506public event EventHandler<ManipulationInertiaStartingEventArgs> ManipulationInertiaStarting 4531public event EventHandler<ManipulationBoundaryFeedbackEventArgs> ManipulationBoundaryFeedback 4556public event EventHandler<ManipulationCompletedEventArgs> ManipulationCompleted
PresentationFramework (112)
src\Framework\MS\Internal\Data\StaticPropertyChangedEventManager.cs (8)
49public static void AddHandler(Type type, EventHandler<PropertyChangedEventArgs> handler, string propertyName) 62public static void RemoveHandler(Type type, EventHandler<PropertyChangedEventArgs> handler, string propertyName) 161private void PrivateAddHandler(Type type, EventHandler<PropertyChangedEventArgs> handler, string propertyName) 186private void PrivateRemoveHandler(Type type, EventHandler<PropertyChangedEventArgs> handler, string propertyName) 312public void AddHandler(EventHandler<PropertyChangedEventArgs> handler, string propertyName) 334public void RemoveHandler(EventHandler<PropertyChangedEventArgs> handler, string propertyName) 638public void AddHandler(EventHandler<PropertyChangedEventArgs> handler) 649public void RemoveHandler(EventHandler<PropertyChangedEventArgs> handler)
src\Framework\MS\Internal\Data\ValueChangedEventManager.cs (8)
95public static void AddHandler(object source, EventHandler<ValueChangedEventArgs> handler, PropertyDescriptor pd) 108public static void RemoveHandler(object source, EventHandler<ValueChangedEventArgs> handler, PropertyDescriptor pd) 323private void PrivateAddHandler(object source, EventHandler<ValueChangedEventArgs> handler, PropertyDescriptor pd) 329private void PrivateRemoveHandler(object source, EventHandler<ValueChangedEventArgs> handler, PropertyDescriptor pd) 334private void AddListener(object source, PropertyDescriptor pd, IWeakEventListener listener, EventHandler<ValueChangedEventArgs> handler) 366private void RemoveListener(object source, PropertyDescriptor pd, IWeakEventListener listener, EventHandler<ValueChangedEventArgs> handler) 445public void Add(IWeakEventListener listener, EventHandler<ValueChangedEventArgs> handler) 467public void Remove(IWeakEventListener listener, EventHandler<ValueChangedEventArgs> handler)
src\Framework\MS\Internal\Data\XmlNodeChangedEventManager.cs (2)
70public static void AddHandler(XmlDocument source, EventHandler<XmlNodeChangedEventArgs> handler) 81public static void RemoveHandler(XmlDocument source, EventHandler<XmlNodeChangedEventArgs> handler)
src\Framework\MS\Internal\Helper.cs (2)
635EventHandler<System.Windows.Markup.XamlSetMarkupExtensionEventArgs> setMarkupExtension 744static EventHandler<System.Windows.Markup.XamlSetMarkupExtensionEventArgs> LookupSetMarkupExtensionHandler(Type type)
src\Framework\System\Windows\Controls\Calendar.cs (8)
51public static readonly RoutedEvent SelectedDatesChangedEvent = EventManager.RegisterRoutedEvent("SelectedDatesChanged", RoutingStrategy.Direct, typeof(EventHandler<SelectionChangedEventArgs>), typeof(Calendar)); 56public event EventHandler<SelectionChangedEventArgs> SelectedDatesChanged 65public event EventHandler<CalendarDateChangedEventArgs> DisplayDateChanged; 70public event EventHandler<CalendarModeChangedEventArgs> DisplayModeChanged; 75public event EventHandler<EventArgs> SelectionModeChanged; 797EventHandler<CalendarDateChangedEventArgs> handler = this.DisplayDateChanged; 806EventHandler<CalendarModeChangedEventArgs> handler = this.DisplayModeChanged; 816EventHandler<EventArgs> handler = this.SelectionModeChanged;
src\Framework\System\Windows\Controls\CalendarDateRange.cs (2)
115internal event EventHandler<CalendarDateRangeChangingEventArgs> Changing; 137EventHandler<CalendarDateRangeChangingEventArgs> handler = this.Changing;
src\Framework\System\Windows\Controls\CalendarSelectionChangedEventArgs.cs (2)
34EventHandler<SelectionChangedEventArgs> handler = genericHandler as EventHandler<SelectionChangedEventArgs>;
src\Framework\System\Windows\Controls\DataGrid.cs (19)
397public event EventHandler<DataGridColumnEventArgs> ColumnDisplayIndexChanged; 1137public event EventHandler<DataGridRowEventArgs> LoadingRow; 1142public event EventHandler<DataGridRowEventArgs> UnloadingRow; 2444public event EventHandler<DataGridRowEditEndingEventArgs> RowEditEnding; 2471public event EventHandler<DataGridCellEditEndingEventArgs> CellEditEnding; 2979public event EventHandler<EventArgs> CurrentCellChanged; 3113public event EventHandler<DataGridBeginningEditEventArgs> BeginningEdit; 3143public event EventHandler<DataGridPreparingCellForEditEventArgs> PreparingCellForEdit; 3532public event EventHandler<AddingNewItemEventArgs> AddingNewItem; 3955public event EventHandler<DataGridRowDetailsEventArgs> LoadingRowDetails; 3960public event EventHandler<DataGridRowDetailsEventArgs> UnloadingRowDetails; 3965public event EventHandler<DataGridRowDetailsEventArgs> RowDetailsVisibilityChanged; 7487public event EventHandler<DataGridAutoGeneratingColumnEventArgs> AutoGeneratingColumn; 8178public event EventHandler<DataGridColumnReorderingEventArgs> ColumnReordering; 8180public event EventHandler<DragStartedEventArgs> ColumnHeaderDragStarted; 8182public event EventHandler<DragDeltaEventArgs> ColumnHeaderDragDelta; 8184public event EventHandler<DragCompletedEventArgs> ColumnHeaderDragCompleted; 8186public event EventHandler<DataGridColumnEventArgs> ColumnReordered; 8438public event EventHandler<DataGridRowClipboardEventArgs> CopyingRowClipboardContent;
src\Framework\System\Windows\Controls\DataGridColumn.cs (2)
1436public event EventHandler<DataGridCellClipboardEventArgs> CopyingCellClipboardContent; 1442public event EventHandler<DataGridCellClipboardEventArgs> PastingCellClipboardContent;
src\Framework\System\Windows\Controls\DatePicker.cs (4)
57public static readonly RoutedEvent SelectedDateChangedEvent = EventManager.RegisterRoutedEvent("SelectedDateChanged", RoutingStrategy.Direct, typeof(EventHandler<SelectionChangedEventArgs>), typeof(DatePicker)); 72public event EventHandler<DatePickerDateValidationErrorEventArgs> DateValidationError; 77public event EventHandler<SelectionChangedEventArgs> SelectedDateChanged 801EventHandler<DatePickerDateValidationErrorEventArgs> handler = this.DateValidationError;
src\Framework\System\Windows\Controls\Image.cs (8)
159typeof(EventHandler<ExceptionRoutedEventArgs>), 165public event EventHandler<ExceptionRoutedEventArgs> ImageFailed 556public static void AddHandler(BitmapSource source, EventHandler<EventArgs> handler) 567public static void RemoveHandler(BitmapSource source, EventHandler<EventArgs> handler) 682public static void AddHandler(BitmapSource source, EventHandler<ExceptionEventArgs> handler) 693public static void RemoveHandler(BitmapSource source, EventHandler<ExceptionEventArgs> handler) 808public static void AddHandler(BitmapSource source, EventHandler<ExceptionEventArgs> handler) 819public static void RemoveHandler(BitmapSource source, EventHandler<ExceptionEventArgs> handler)
src\Framework\System\Windows\Controls\MediaElement.cs (4)
572typeof(EventHandler<ExceptionRoutedEventArgs>), 577public event EventHandler<ExceptionRoutedEventArgs> MediaFailed 648typeof(EventHandler<MediaScriptCommandRoutedEventArgs>), 654public event EventHandler<MediaScriptCommandRoutedEventArgs> ScriptCommand
src\Framework\System\Windows\Controls\Primitives\GridViewRowPresenterBase.cs (2)
412public static void AddHandler(GridViewColumnCollection source, EventHandler<NotifyCollectionChangedEventArgs> handler) 423public static void RemoveHandler(GridViewColumnCollection source, EventHandler<NotifyCollectionChangedEventArgs> handler)
src\Framework\System\Windows\Controls\Validation.cs (3)
50typeof(EventHandler<ValidationErrorEventArgs>), 59public static void AddErrorHandler(DependencyObject element, EventHandler<ValidationErrorEventArgs> handler) 69public static void RemoveErrorHandler(DependencyObject element, EventHandler<ValidationErrorEventArgs> handler)
src\Framework\System\Windows\Controls\ValidationErrorEventArgs.cs (2)
91EventHandler<ValidationErrorEventArgs> handler = (EventHandler<ValidationErrorEventArgs>) genericHandler;
src\Framework\System\Windows\Data\Binding.cs (6)
108typeof(EventHandler<DataTransferEventArgs>), 116public static void AddSourceUpdatedHandler(DependencyObject element, EventHandler<DataTransferEventArgs> handler) 126public static void RemoveSourceUpdatedHandler(DependencyObject element, EventHandler<DataTransferEventArgs> handler) 138typeof(EventHandler<DataTransferEventArgs>), 146public static void AddTargetUpdatedHandler(DependencyObject element, EventHandler<DataTransferEventArgs> handler) 156public static void RemoveTargetUpdatedHandler(DependencyObject element, EventHandler<DataTransferEventArgs> handler)
src\Framework\System\Windows\Data\BindingExpressionBase.cs (1)
538internal event EventHandler<BindingValueChangedEventArgs> ValueChanged;
src\Framework\System\Windows\Data\BindingOperations.cs (2)
437public static event EventHandler<CollectionRegisteringEventArgs> CollectionRegistering; 449public static event EventHandler<CollectionViewRegisteringEventArgs> CollectionViewRegistering;
src\Framework\System\Windows\Data\DataChangedEventManager.cs (2)
71public static void AddHandler(DataSourceProvider source, EventHandler<EventArgs> handler) 82public static void RemoveHandler(DataSourceProvider source, EventHandler<EventArgs> handler)
src\Framework\System\Windows\Data\DataTransferEventArgs.cs (2)
81EventHandler<DataTransferEventArgs> handler = (EventHandler<DataTransferEventArgs>) genericHandler;
src\Framework\System\Windows\FrameworkContentElement.cs (2)
1117public event EventHandler<DataTransferEventArgs> TargetUpdated 1127public event EventHandler<DataTransferEventArgs> SourceUpdated
src\Framework\System\Windows\FrameworkElement.cs (2)
2679public event EventHandler<DataTransferEventArgs> TargetUpdated 2689public event EventHandler<DataTransferEventArgs> SourceUpdated
src\Framework\System\Windows\LostFocusEventManager.cs (2)
70public static void AddHandler(DependencyObject source, EventHandler<RoutedEventArgs> handler) 81public static void RemoveHandler(DependencyObject source, EventHandler<RoutedEventArgs> handler)
src\Framework\System\Windows\Markup\Baml2006\WpfKnownType.cs (2)
260protected override EventHandler<System.Windows.Markup.XamlSetMarkupExtensionEventArgs> LookupSetMarkupExtensionHandler() 277protected override EventHandler<System.Windows.Markup.XamlSetTypeConverterEventArgs> LookupSetTypeConverterHandler()
src\Framework\System\Windows\Shell\JumpList.cs (5)
754EventHandler<JumpItemsRejectedEventArgs> rejectedHandler = JumpItemsRejected; 755EventHandler<JumpItemsRemovedEventArgs> removedHandler = JumpItemsRemovedByUser; 1245EventHandler<JumpItemsRejectedEventArgs> handler = JumpItemsRejected; 1268public event EventHandler<JumpItemsRejectedEventArgs> JumpItemsRejected; 1270public event EventHandler<JumpItemsRemovedEventArgs> JumpItemsRemovedByUser;
src\Framework\System\Windows\StyleHelper.cs (2)
1684EventHandler<BindingValueChangedEventArgs> handler; 1743EventHandler<BindingValueChangedEventArgs> handler)
src\Framework\System\Windows\SystemResources.cs (3)
1788internal static event EventHandler<ResourceDictionaryLoadedEventArgs> ThemedDictionaryLoaded; 1789internal static event EventHandler<ResourceDictionaryUnloadedEventArgs> ThemedDictionaryUnloaded; 1790internal static event EventHandler<ResourceDictionaryLoadedEventArgs> GenericDictionaryLoaded;
src\Framework\System\Windows\VisualStateGroup.cs (2)
157public event EventHandler<VisualStateChangedEventArgs> CurrentStateChanged; 162public event EventHandler<VisualStateChangedEventArgs> CurrentStateChanging;
src\Framework\System\Windows\Window.cs (3)
1789internal event EventHandler<EventArgs> VisualChildrenChanged 2167var handler = Events[EVENT_VISUALCHILDRENCHANGED] as EventHandler<EventArgs>;
System (27)
compmod\system\collections\specialized\marshalinghelpers.cs (16)
67EventRegistrationToken add_CanExecuteChanged(EventHandler<object> value); 332private static ConditionalWeakTable<EventHandler, EventHandler<object>> m_weakTable = 333new ConditionalWeakTable<EventHandler, EventHandler<object>>(); 348Func<EventHandler<object>, EventRegistrationToken> addMethod = 349new Func<EventHandler<object>, EventRegistrationToken>(_this.add_CanExecuteChanged); 355EventHandler<object> handler_WinRT = m_weakTable.GetValue(value, ICommandAdapterHelpers.CreateWrapperHandler); 356WindowsRuntimeMarshal.AddEventHandler<EventHandler<object>>(addMethod, removeMethod, handler_WinRT); 372EventHandler<object> handler_WinRT = ICommandAdapterHelpers.GetValueFromEquivalentKey(m_weakTable , value, ICommandAdapterHelpers.CreateWrapperHandler); 373WindowsRuntimeMarshal.RemoveEventHandler<EventHandler<object>>(removeMethod, handler_WinRT); 409private EventRegistrationToken add_CanExecuteChanged(EventHandler<object> value) 451internal static EventHandler<object> CreateWrapperHandler(EventHandler handler) 462internal static EventHandler CreateWrapperHandler(EventHandler<object> handler) 467internal static EventHandler<object> GetValueFromEquivalentKey( 468ConditionalWeakTable<EventHandler, EventHandler<object>> table, 470ConditionalWeakTable<EventHandler, EventHandler<object>>.CreateValueCallback callback) 472EventHandler<object> value;
compmod\system\componentmodel\INotifyDataErrorInfo.cs (1)
26event EventHandler<DataErrorsChangedEventArgs> ErrorsChanged;
net\System\Net\Sockets\Socket.cs (3)
8605private event EventHandler<SocketAsyncEventArgs> m_Completed; 8776public event EventHandler<SocketAsyncEventArgs> Completed { 8789EventHandler<SocketAsyncEventArgs> handler = m_Completed;
net\System\Net\WebSockets\WebSocketConnectionStream.cs (2)
454private static readonly EventHandler<SocketAsyncEventArgs> s_OnReadCompleted = 456private static readonly EventHandler<SocketAsyncEventArgs> s_OnWriteCompleted =
net\System\Net\WebSockets\WebSocketHttpListenerDuplexStream.cs (5)
24private static readonly EventHandler<HttpListenerAsyncEventArgs> s_OnReadCompleted = 26private static readonly EventHandler<HttpListenerAsyncEventArgs> s_OnWriteCompleted = 851private event EventHandler<HttpListenerAsyncEventArgs> m_Completed; 969public event EventHandler<HttpListenerAsyncEventArgs> Completed 983EventHandler<HttpListenerAsyncEventArgs> handler = m_Completed;
System.Activities (4)
System\Activities\Debugger\XamlDebuggerXmlReader.cs (2)
121public event EventHandler<SourceLocationFoundEventArgs> SourceLocationFound 127private event EventHandler<SourceLocationFoundEventArgs> _sourceLocationFound;
System\Activities\WorkflowInvoker.cs (2)
38public event EventHandler<InvokeCompletedEventArgs> InvokeCompleted; 490EventHandler<InvokeCompletedEventArgs> handler = this.InvokeCompleted;
System.Activities.Presentation (20)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\categoryentry.cs (1)
77public event EventHandler<PropertyFilterAppliedEventArgs> FilterApplied;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\IPropertyFilterTarget.cs (1)
14event EventHandler<PropertyFilterAppliedEventArgs> FilterApplied;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\propertyentry.cs (1)
136public event EventHandler<PropertyFilterAppliedEventArgs> FilterApplied;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\PropertyValue.cs (1)
282public event EventHandler<PropertyValueExceptionEventArgs> PropertyValueException;
System.Activities.Presentation\System\Activities\Presentation\Model\ModelService.cs (1)
40public abstract event EventHandler<ModelChangedEventArgs> ModelChanged;
System.Activities.Presentation\System\Activities\Presentation\Model\ModelServiceImpl.cs (1)
28public override event EventHandler<ModelChangedEventArgs> ModelChanged;
System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (5)
58public event EventHandler<EditingScopeEventArgs> EditingScopeCompleted; 61private event EventHandler<ModelItemsRemovedEventArgs> ModelItemsRemoved; 63private event EventHandler<ModelItemsAddedEventArgs> ModelItemsAdded; 923EventHandler<ModelItemsAddedEventArgs> tempModelItemsAdded = this.ModelItemsAdded; 933EventHandler<ModelItemsRemovedEventArgs> tempModelItemsRemoved = this.ModelItemsRemoved;
System.Activities.Presentation\System\Activities\Presentation\ObjectReferenceService.cs (1)
46public event EventHandler<SourceLocationUpdatedEventArgs> SourceLocationUpdated;
System.Activities.Presentation\System\Activities\Presentation\UndoEngine.cs (4)
26public event EventHandler<UndoUnitEventArgs> UndoUnitAdded; 27public event EventHandler<UndoUnitEventArgs> UndoCompleted; 28public event EventHandler<UndoUnitEventArgs> RedoCompleted; 29public event EventHandler<UndoUnitEventArgs> UndoUnitCancelled;
System.Activities.Presentation\System\Activities\Presentation\Validation\ValidationService.cs (1)
98internal event EventHandler<ErrorsMarkedEventArgs> ErrorsMarked;
System.Activities.Presentation\System\Activities\Presentation\View\DataGridHelper.cs (1)
64public event EventHandler<DataGridCellEditEndingEventArgs> DataGridCellEditEnding;
System.Activities.Presentation\System\Activities\Presentation\View\WorkflowViewService.cs (1)
32public event EventHandler<ViewCreatedEventArgs> ViewCreated;
System.Activities.Presentation\System\Activities\Presentation\WorkflowDesigner.cs (1)
94internal event EventHandler<PreviewLoadEventArgs> PreviewLoad;
System.AddIn (1)
System\Addin\Hosting\AddInProcess.cs (1)
184public event EventHandler<System.ComponentModel.CancelEventArgs> ShuttingDown;
System.Core (1)
System\Diagnostics\Eventing\Reader\EventLogWatcher.cs (1)
32public event EventHandler<EventRecordWrittenEventArgs> EventRecordWritten;
System.Data (20)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\categoryentry.cs (1)
77public event EventHandler<PropertyFilterAppliedEventArgs> FilterApplied;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\IPropertyFilterTarget.cs (1)
14event EventHandler<PropertyFilterAppliedEventArgs> FilterApplied;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\propertyentry.cs (1)
136public event EventHandler<PropertyFilterAppliedEventArgs> FilterApplied;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\PropertyValue.cs (1)
282public event EventHandler<PropertyValueExceptionEventArgs> PropertyValueException;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelService.cs (1)
40public abstract event EventHandler<ModelChangedEventArgs> ModelChanged;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelServiceImpl.cs (1)
28public override event EventHandler<ModelChangedEventArgs> ModelChanged;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (5)
58public event EventHandler<EditingScopeEventArgs> EditingScopeCompleted; 61private event EventHandler<ModelItemsRemovedEventArgs> ModelItemsRemoved; 63private event EventHandler<ModelItemsAddedEventArgs> ModelItemsAdded; 923EventHandler<ModelItemsAddedEventArgs> tempModelItemsAdded = this.ModelItemsAdded; 933EventHandler<ModelItemsRemovedEventArgs> tempModelItemsRemoved = this.ModelItemsRemoved;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\ObjectReferenceService.cs (1)
46public event EventHandler<SourceLocationUpdatedEventArgs> SourceLocationUpdated;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\UndoEngine.cs (4)
26public event EventHandler<UndoUnitEventArgs> UndoUnitAdded; 27public event EventHandler<UndoUnitEventArgs> UndoCompleted; 28public event EventHandler<UndoUnitEventArgs> RedoCompleted; 29public event EventHandler<UndoUnitEventArgs> UndoUnitCancelled;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Validation\ValidationService.cs (1)
98internal event EventHandler<ErrorsMarkedEventArgs> ErrorsMarked;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\DataGridHelper.cs (1)
64public event EventHandler<DataGridCellEditEndingEventArgs> DataGridCellEditEnding;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\WorkflowViewService.cs (1)
32public event EventHandler<ViewCreatedEventArgs> ViewCreated;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\WorkflowDesigner.cs (1)
94internal event EventHandler<PreviewLoadEventArgs> PreviewLoad;
System.Data.Services (4)
System\Data\Services\DataServiceProcessingPipeline.cs (4)
75public event EventHandler<DataServiceProcessingPipelineEventArgs> ProcessingRequest; 80public event EventHandler<DataServiceProcessingPipelineEventArgs> ProcessedRequest; 85public event EventHandler<EventArgs> ProcessingChangeset; 90public event EventHandler<EventArgs> ProcessedChangeset;
System.Data.Services.Client (4)
System\Data\Services\Client\DataServiceContext.cs (4)
203public event EventHandler<SendingRequestEventArgs> SendingRequest; 215public event EventHandler<ReadingWritingEntityEventArgs> ReadingEntity; 227public event EventHandler<ReadingWritingEntityEventArgs> WritingEntity; 232internal event EventHandler<SaveChangesEventArgs> ChangesSaved;
System.Data.Services.Design (4)
System\Data\EntityModel\Emitters\ClientApiGenerator.cs (2)
158private EventHandler<TypeGeneratedEventArgs> _onTypeGenerated; 159private EventHandler<PropertyGeneratedEventArgs> _onPropertyGenerated;
System\Data\EntityModel\EntityClassGenerator.cs (2)
75public event EventHandler<TypeGeneratedEventArgs> OnTypeGenerated; 80public event EventHandler<PropertyGeneratedEventArgs> OnPropertyGenerated;
System.IO.Log (7)
System\IO\Log\FileRecordSequence.cs (2)
85public event EventHandler<TailPinnedEventArgs> TailPinned; 508EventHandler<TailPinnedEventArgs> handler;
System\IO\Log\IRecordSequence.cs (1)
18event EventHandler<TailPinnedEventArgs> TailPinned;
System\IO\Log\LogManagementAsyncResult.cs (3)
47event EventHandler<TailPinnedEventArgs> InternalTailPinned; 48public event EventHandler<TailPinnedEventArgs> TailPinned 265EventHandler<TailPinnedEventArgs> handler;
System\IO\Log\LogRecordSequence.cs (1)
247public event EventHandler<TailPinnedEventArgs> TailPinned
System.Net (117)
net\INetworkProgress.cs (3)
15event EventHandler<NetworkProgressChangedEventArgs> ProgressChanged; 20event EventHandler<NetworkProgressChangedEventArgs> ProgressCompleted; 25event EventHandler<NetworkProgressChangedEventArgs> ProgressFailed;
net\PeerToPeer\Collaboration\CollaborationHelperFunctions.cs (6)
422internal static void AddMyPresenceChanged(EventHandler<PresenceChangedEventArgs> callback, 423ref EventHandler<PresenceChangedEventArgs> presenceChanged, 480internal static void AddMyApplicationChanged(EventHandler<ApplicationChangedEventArgs> callback, 481ref EventHandler<ApplicationChangedEventArgs> applicationChanged, 538internal static void AddMyObjectChanged(EventHandler<ObjectChangedEventArgs> callback, 539ref EventHandler<ObjectChangedEventArgs> objectChanged,
net\PeerToPeer\Collaboration\ContactManager.cs (28)
177private event EventHandler<SubscriptionListChangedEventArgs> m_subscriptionListChanged; 178public event EventHandler<SubscriptionListChangedEventArgs> SubscriptionListChanged 232private void AddSubscriptionListChanged(EventHandler<SubscriptionListChangedEventArgs> callback) 282private void RemoveSubscriptionListChanged(EventHandler<SubscriptionListChangedEventArgs> callback) 365EventHandler<SubscriptionListChangedEventArgs> handlerCopy = m_subscriptionListChanged; 378private event EventHandler<NameChangedEventArgs> m_nameChanged; 379public event EventHandler<NameChangedEventArgs> NameChanged 432private void AddNameChanged(EventHandler<NameChangedEventArgs> callback) 483private void RemoveNameChanged(EventHandler<NameChangedEventArgs> callback) 572EventHandler<NameChangedEventArgs> handlerCopy = m_nameChanged; 585private event EventHandler<PresenceChangedEventArgs> m_presenceChanged; 586public event EventHandler<PresenceChangedEventArgs> PresenceChanged 639private void AddPresenceChanged(EventHandler<PresenceChangedEventArgs> callback) 689private void RemovePresenceChanged(EventHandler<PresenceChangedEventArgs> callback) 786EventHandler<PresenceChangedEventArgs> handlerCopy = m_presenceChanged; 799private event EventHandler<ApplicationChangedEventArgs> m_applicationChanged; 800public event EventHandler<ApplicationChangedEventArgs> ApplicationChanged 851private void AddApplicationChanged(EventHandler<ApplicationChangedEventArgs> callback) 903private void RemoveApplicationChanged(EventHandler<ApplicationChangedEventArgs> callback) 998EventHandler<ApplicationChangedEventArgs> handlerCopy = m_applicationChanged; 1011private event EventHandler<ObjectChangedEventArgs> m_objectChanged; 1012public event EventHandler<ObjectChangedEventArgs> ObjectChanged 1065private void AddObjectChangedEvent(EventHandler<ObjectChangedEventArgs> callback) 1117private void RemoveObjectChangedEvent(EventHandler<ObjectChangedEventArgs> callback) 1211EventHandler<ObjectChangedEventArgs> handlerCopy = m_objectChanged; 1475private event EventHandler<CreateContactCompletedEventArgs> m_createContactCompleted; 1476public event EventHandler<CreateContactCompletedEventArgs> CreateContactCompleted 1591EventHandler<CreateContactCompletedEventArgs> handlerCopy = m_createContactCompleted;
net\PeerToPeer\Collaboration\MyContact.cs (12)
57private event EventHandler<PresenceChangedEventArgs> m_presenceChanged; 67internal override void AddPresenceChanged(EventHandler<PresenceChangedEventArgs> callback) 117internal override void RemovePresenceChanged(EventHandler<PresenceChangedEventArgs> callback) 131EventHandler<PresenceChangedEventArgs> handlerCopy = m_presenceChanged; 223private event EventHandler<ApplicationChangedEventArgs> m_applicationChanged; 233internal override void AddApplicationChanged(EventHandler<ApplicationChangedEventArgs> callback) 282internal override void RemoveApplicationChanged(EventHandler<ApplicationChangedEventArgs> callback) 296EventHandler<ApplicationChangedEventArgs> handlerCopy = m_applicationChanged; 384private event EventHandler<ObjectChangedEventArgs> m_objectChanged; 394internal override void AddObjectChangedEvent(EventHandler<ObjectChangedEventArgs> callback) 448internal override void RemoveObjectChangedEvent(EventHandler<ObjectChangedEventArgs> callback) 462EventHandler<ObjectChangedEventArgs> handlerCopy = m_objectChanged;
net\PeerToPeer\Collaboration\Peer.cs (3)
768private event EventHandler<InviteCompletedEventArgs> m_inviteCompleted; 769public event EventHandler<InviteCompletedEventArgs> InviteCompleted 847EventHandler<InviteCompletedEventArgs> handlerCopy = m_inviteCompleted;
net\PeerToPeer\Collaboration\PeerApplication.cs (5)
180private event EventHandler<ApplicationChangedEventArgs> m_applicationChanged; 181public event EventHandler<ApplicationChangedEventArgs> ApplicationChanged 236private void AddApplicationChanged(EventHandler<ApplicationChangedEventArgs> callback) 303private void RemoveApplicationChanged(EventHandler<ApplicationChangedEventArgs> callback) 321EventHandler<ApplicationChangedEventArgs> handlerCopy = m_applicationChanged;
net\PeerToPeer\Collaboration\PeerCollaboration.cs (20)
972private static event EventHandler<NameChangedEventArgs> s_nameChanged; 973public static event EventHandler<NameChangedEventArgs> LocalNameChanged 1027private static void AddNameChanged(EventHandler<NameChangedEventArgs> callback) 1079private static void RemoveNameChanged(EventHandler<NameChangedEventArgs> callback) 1160EventHandler<NameChangedEventArgs> handlerCopy = s_nameChanged; 1173static event EventHandler<PresenceChangedEventArgs> s_presenceChanged; 1174public static event EventHandler<PresenceChangedEventArgs> LocalPresenceChanged 1226static void AddPresenceChanged(EventHandler<PresenceChangedEventArgs> callback) 1238static void RemovePresenceChanged(EventHandler<PresenceChangedEventArgs> callback) 1327EventHandler<PresenceChangedEventArgs> handlerCopy = s_presenceChanged; 1340static EventHandler<ObjectChangedEventArgs> s_objectChanged; 1342public static event EventHandler<ObjectChangedEventArgs> LocalObjectChanged 1394static void AddObjectChangedEvent(EventHandler<ObjectChangedEventArgs> callback) 1406static void RemoveObjectChangedEvent(EventHandler<ObjectChangedEventArgs> callback) 1492EventHandler<ObjectChangedEventArgs> handlerCopy = s_objectChanged; 1505static event EventHandler<ApplicationChangedEventArgs> s_applicationChanged; 1507public static event EventHandler<ApplicationChangedEventArgs> LocalApplicationChanged 1559static void AddApplicationChanged(EventHandler<ApplicationChangedEventArgs> callback) 1571static void RemoveApplicationChanged(EventHandler<ApplicationChangedEventArgs> callback) 1656EventHandler<ApplicationChangedEventArgs> handlerCopy = s_applicationChanged;
net\PeerToPeer\Collaboration\PeerContact.cs (18)
529private event EventHandler<SubscribeCompletedEventArgs> m_subscribeCompleted; 530public event EventHandler<SubscribeCompletedEventArgs> SubscribeCompleted 577EventHandler<SubscribeCompletedEventArgs> handlerCopy = m_subscribeCompleted; 1147private event EventHandler<ApplicationChangedEventArgs> m_applicationChanged; 1148public event EventHandler<ApplicationChangedEventArgs> ApplicationChanged 1219internal virtual void AddApplicationChanged(EventHandler<ApplicationChangedEventArgs> callback) 1271internal virtual void RemoveApplicationChanged(EventHandler<ApplicationChangedEventArgs> callback) 1298EventHandler<ApplicationChangedEventArgs> handlerCopy = m_applicationChanged; 1398private event EventHandler<ObjectChangedEventArgs> m_objectChanged; 1399public event EventHandler<ObjectChangedEventArgs> ObjectChanged 1471internal virtual void AddObjectChangedEvent(EventHandler<ObjectChangedEventArgs> callback) 1521internal virtual void RemoveObjectChangedEvent(EventHandler<ObjectChangedEventArgs> callback) 1550EventHandler<ObjectChangedEventArgs> handlerCopy = m_objectChanged; 1652private event EventHandler<PresenceChangedEventArgs> m_presenceChanged; 1653public event EventHandler<PresenceChangedEventArgs> PresenceChanged 1725internal virtual void AddPresenceChanged(EventHandler<PresenceChangedEventArgs> callback) 1775internal virtual void RemovePresenceChanged(EventHandler<PresenceChangedEventArgs> callback) 1804EventHandler<PresenceChangedEventArgs> handlerCopy = m_presenceChanged;
net\PeerToPeer\Collaboration\PeerEndPoint.cs (5)
146private event EventHandler<NameChangedEventArgs> m_nameChanged; 147public event EventHandler<NameChangedEventArgs> NameChanged 204private void AddNameChanged(EventHandler<NameChangedEventArgs> callback) 257private void RemoveNameChanged(EventHandler<NameChangedEventArgs> callback) 363EventHandler<NameChangedEventArgs> handlerCopy = m_nameChanged;
net\PeerToPeer\Collaboration\PeerNearMe.cs (8)
424private event EventHandler<RefreshDataCompletedEventArgs> m_refreshDataCompleted; 425public event EventHandler<RefreshDataCompletedEventArgs> RefreshDataCompleted 470EventHandler<RefreshDataCompletedEventArgs> handlerCopy = m_refreshDataCompleted; 489private static event EventHandler<PeerNearMeChangedEventArgs> s_peerNearMeChanged; 490public static event EventHandler<PeerNearMeChangedEventArgs> PeerNearMeChanged 543private static void AddPeerNearMeChanged(EventHandler<PeerNearMeChangedEventArgs> cb) 595private static void RemovePeerNearMeChanged(EventHandler<PeerNearMeChangedEventArgs> cb) 671EventHandler<PeerNearMeChangedEventArgs> handlerCopy = s_peerNearMeChanged;
net\PeerToPeer\Collaboration\PeerObject.cs (5)
133private event EventHandler<ObjectChangedEventArgs> m_objectChanged; 134public event EventHandler<ObjectChangedEventArgs> ObjectChanged 188private void AddObjectChangedEvent(EventHandler<ObjectChangedEventArgs> callback) 251private void RemoveObjectChangedEvent(EventHandler<ObjectChangedEventArgs> callback) 269EventHandler<ObjectChangedEventArgs> handlerCopy = m_objectChanged;
net\PeerToPeer\PeerNameResolver.cs (4)
509private event EventHandler<ResolveProgressChangedEventArgs> m_ResolveProgressChanged; 516public event EventHandler<ResolveProgressChangedEventArgs> ResolveProgressChanged 530private event EventHandler<ResolveCompletedEventArgs> m_ResolveCompleted; 538public event EventHandler<ResolveCompletedEventArgs> ResolveCompleted
System.ServiceModel (22)
System\ServiceModel\Channels\PeerNeighborManager.cs (5)
20public event EventHandler<PeerNeighborCloseEventArgs> NeighborClosed; 21public event EventHandler<PeerNeighborCloseEventArgs> NeighborClosing; 261static void FireEvent(EventHandler<PeerNeighborCloseEventArgs> handler, 756public event EventHandler<PeerNeighborCloseEventArgs> Closing; 1018EventHandler<PeerNeighborCloseEventArgs> handler = this.Closing;
System\ServiceModel\Channels\PeerNodeImplementation.cs (4)
108public event EventHandler<PeerNeighborCloseEventArgs> NeighborClosed; 109public event EventHandler<PeerNeighborCloseEventArgs> NeighborClosing; 1149EventHandler<PeerNeighborCloseEventArgs> handler = NeighborClosed; 1167EventHandler<PeerNeighborCloseEventArgs> handler = NeighborClosing;
System\ServiceModel\Channels\ServiceChannel.cs (3)
61EventHandler<UnknownMessageReceivedEventArgs> unknownMessageReceived; 934EventHandler<UnknownMessageReceivedEventArgs> handler = this.unknownMessageReceived; 1753event EventHandler<UnknownMessageReceivedEventArgs> IClientChannel.UnknownMessageReceived
System\ServiceModel\Channels\SocketConnection.cs (3)
25static EventHandler<SocketAsyncEventArgs> onReceiveAsyncCompleted; 26static EventHandler<SocketAsyncEventArgs> onSocketSendCompleted; 2168static EventHandler<SocketAsyncEventArgs> acceptAsyncCompleted = new EventHandler<SocketAsyncEventArgs>(AcceptAsyncCompleted);
System\ServiceModel\ClientBase.cs (1)
1190event EventHandler<UnknownMessageReceivedEventArgs> IClientChannel.UnknownMessageReceived
System\ServiceModel\Description\ClientClassGenerator.cs (1)
47static Type eventHandlerType = typeof(EventHandler<>);
System\ServiceModel\IClientChannel.cs (1)
21event EventHandler<UnknownMessageReceivedEventArgs> UnknownMessageReceived;
System\ServiceModel\Security\WSTrustServiceContract.cs (2)
52event EventHandler<WSTrustRequestProcessingErrorEventArgs> _requestFailed; 72public event EventHandler<WSTrustRequestProcessingErrorEventArgs> RequestFailed
System\ServiceModel\ServiceHost.cs (2)
56public event EventHandler<UnknownMessageReceivedEventArgs> UnknownMessageReceived; 1131EventHandler<UnknownMessageReceivedEventArgs> handler = UnknownMessageReceived;
System.ServiceModel.Activities (26)
System\ServiceModel\Activities\WorkflowControlClient.cs (12)
81public event EventHandler<AsyncCompletedEventArgs> AbandonCompleted; 82public event EventHandler<AsyncCompletedEventArgs> CancelCompleted; 83public event EventHandler<AsyncCompletedEventArgs> RunCompleted; 84public event EventHandler<AsyncCompletedEventArgs> SuspendCompleted; 85public event EventHandler<AsyncCompletedEventArgs> UnsuspendCompleted; 86public event EventHandler<AsyncCompletedEventArgs> TerminateCompleted; 442EventHandler<AsyncCompletedEventArgs> abortCompleted = this.AbandonCompleted; 465EventHandler<AsyncCompletedEventArgs> cancelCompleted = this.CancelCompleted; 488EventHandler<AsyncCompletedEventArgs> runCompleted = this.RunCompleted; 509EventHandler<AsyncCompletedEventArgs> suspendCompleted = this.SuspendCompleted; 529EventHandler<AsyncCompletedEventArgs> unsuspendCompleted = this.UnsuspendCompleted; 549EventHandler<AsyncCompletedEventArgs> terminateCompleted = this.TerminateCompleted;
System\ServiceModel\Activities\WorkflowUpdateableControlClient.cs (14)
86public event EventHandler<AsyncCompletedEventArgs> AbandonCompleted; 87public event EventHandler<AsyncCompletedEventArgs> CancelCompleted; 88public event EventHandler<AsyncCompletedEventArgs> RunCompleted; 89public event EventHandler<AsyncCompletedEventArgs> SuspendCompleted; 90public event EventHandler<AsyncCompletedEventArgs> UnsuspendCompleted; 91public event EventHandler<AsyncCompletedEventArgs> TerminateCompleted; 92public event EventHandler<AsyncCompletedEventArgs> UpdateCompleted; 493EventHandler<AsyncCompletedEventArgs> abortCompleted = this.AbandonCompleted; 516EventHandler<AsyncCompletedEventArgs> cancelCompleted = this.CancelCompleted; 539EventHandler<AsyncCompletedEventArgs> runCompleted = this.RunCompleted; 560EventHandler<AsyncCompletedEventArgs> suspendCompleted = this.SuspendCompleted; 580EventHandler<AsyncCompletedEventArgs> unsuspendCompleted = this.UnsuspendCompleted; 600EventHandler<AsyncCompletedEventArgs> terminateCompleted = this.TerminateCompleted; 622EventHandler<AsyncCompletedEventArgs> updateCompleted = this.UpdateCompleted;
System.ServiceModel.Discovery (32)
System\ServiceModel\Discovery\AnnouncementClient.cs (6)
52public event EventHandler<AsyncCompletedEventArgs> AnnounceOnlineCompleted 73public event EventHandler<AsyncCompletedEventArgs> AnnounceOfflineCompleted 94event EventHandler<AsyncCompletedEventArgs> InternalAnnounceOnlineCompleted; 95event EventHandler<AsyncCompletedEventArgs> InternalAnnounceOfflineCompleted; 558EventHandler<AsyncCompletedEventArgs> handler = this.InternalAnnounceOnlineCompleted; 567EventHandler<AsyncCompletedEventArgs> handler = this.InternalAnnounceOfflineCompleted;
System\ServiceModel\Discovery\AnnouncementService.cs (4)
44public event EventHandler<AnnouncementEventArgs> OnlineAnnouncementReceived; 45public event EventHandler<AnnouncementEventArgs> OfflineAnnouncementReceived; 176EventHandler<AnnouncementEventArgs> handler = this.OnlineAnnouncementReceived; 197EventHandler<AnnouncementEventArgs> handler = this.OfflineAnnouncementReceived;
System\ServiceModel\Discovery\DiscoveryClient.cs (8)
75public event EventHandler<FindCompletedEventArgs> FindCompleted; 76public event EventHandler<FindProgressChangedEventArgs> FindProgressChanged; 77public event EventHandler<AnnouncementEventArgs> ProxyAvailable; 78public event EventHandler<ResolveCompletedEventArgs> ResolveCompleted; 1002EventHandler<FindCompletedEventArgs> handler = this.FindCompleted; 1011EventHandler<FindProgressChangedEventArgs> handler = this.FindProgressChanged; 1092EventHandler<ResolveCompletedEventArgs> handler = this.ResolveCompleted; 1124EventHandler<AnnouncementEventArgs> handler = this.ProxyAvailable;
System\ServiceModel\Discovery\IAnnouncementInnerClient.cs (2)
12event EventHandler<AsyncCompletedEventArgs> HelloOperationCompleted; 13event EventHandler<AsyncCompletedEventArgs> ByeOperationCompleted;
System\ServiceModel\Discovery\Version11\AnnouncementInnerClient11.cs (4)
30event EventHandler<AsyncCompletedEventArgs> HelloOperationCompletedEventHandler; 31event EventHandler<AsyncCompletedEventArgs> ByeOperationCompletedEventHandler; 33event EventHandler<AsyncCompletedEventArgs> IAnnouncementInnerClient.HelloOperationCompleted 45event EventHandler<AsyncCompletedEventArgs> IAnnouncementInnerClient.ByeOperationCompleted
System\ServiceModel\Discovery\VersionApril2005\AnnouncementInnerClientApril2005.cs (4)
31event EventHandler<AsyncCompletedEventArgs> HelloOperationCompletedEventHandler; 32event EventHandler<AsyncCompletedEventArgs> ByeOperationCompletedEventHandler; 34event EventHandler<AsyncCompletedEventArgs> IAnnouncementInnerClient.HelloOperationCompleted 46event EventHandler<AsyncCompletedEventArgs> IAnnouncementInnerClient.ByeOperationCompleted
System\ServiceModel\Discovery\VersionCD1\AnnouncementInnerClientCD1.cs (4)
30event EventHandler<AsyncCompletedEventArgs> HelloOperationCompletedEventHandler; 31event EventHandler<AsyncCompletedEventArgs> ByeOperationCompletedEventHandler; 33event EventHandler<AsyncCompletedEventArgs> IAnnouncementInnerClient.HelloOperationCompleted 45event EventHandler<AsyncCompletedEventArgs> IAnnouncementInnerClient.ByeOperationCompleted
System.Web (9)
ModelBinding\ModelValidationNode.cs (4)
50public event EventHandler<ModelValidatedEventArgs> Validated; 52public event EventHandler<ModelValidatingEventArgs> Validating; 65EventHandler<ModelValidatedEventArgs> handler = Validated; 72EventHandler<ModelValidatingEventArgs> handler = Validating;
ModelBinding\MutableObjectModelBinder.cs (1)
91internal static EventHandler<ModelValidatedEventArgs> CreateNullCheckFailedHandler(ModelBindingExecutionContext modelBindingExecutionContext, ModelMetadata modelMetadata, object incomingValue) {
UI\WebControls\DataList.cs (3)
1194var onWizardListItemDataBoundHandler = (EventHandler<WizardSideBarListControlItemEventArgs>)Events[EventWizardListItemDataBound]; 1530event EventHandler<WizardSideBarListControlItemEventArgs> IWizardSideBarListControl.ItemDataBound {
UI\WebControls\IWizardSideBarListControl.cs (1)
21event EventHandler<WizardSideBarListControlItemEventArgs> ItemDataBound;
System.Web.DataVisualization (21)
Common\General\BaseCollections.cs (4)
348internal event EventHandler<NameReferenceChangedEventArgs> NameReferenceChanged; 349internal event EventHandler<NameReferenceChangedEventArgs> NameReferenceChanging; 586EventHandler<NameReferenceChangedEventArgs> changingCallback, 587EventHandler<NameReferenceChangedEventArgs> changedCallback)
Common\General\BaseInterfaces.cs (2)
61EventHandler<NameReferenceChangedEventArgs> changingCallback, 62EventHandler<NameReferenceChangedEventArgs> changedCallback);
Common\General\Chart.cs (2)
1497internal event EventHandler<ChartPaintEventArgs> BeforePaint; 1498internal event EventHandler<ChartPaintEventArgs> AfterPaint;
WebForm\ChartWebControl.cs (13)
1318public event EventHandler<ChartPaintEventArgs> PrePaint 1335public event EventHandler<ChartPaintEventArgs> PostPaint 1351public event EventHandler<CustomizeMapAreasEventArgs> CustomizeMapAreas 1383public event EventHandler<CustomizeLegendEventArgs> CustomizeLegend 1450EventHandler<ChartPaintEventArgs> prePaintEventDelegate = (EventHandler<ChartPaintEventArgs>)Events[_prePaintEvent]; 1478EventHandler<ChartPaintEventArgs> postPaintEventDelegate = (EventHandler<ChartPaintEventArgs>)Events[_postPaintEvent]; 1505EventHandler<CustomizeMapAreasEventArgs> customizeMapAreasEventDelegate = (EventHandler<CustomizeMapAreasEventArgs>)Events[_customizeMapAreasEvent]; 1546EventHandler<CustomizeLegendEventArgs> customizeLegendEventDelegate = (EventHandler<CustomizeLegendEventArgs>)Events[_customizeLegendEvent]; 3129public event EventHandler<FormatNumberEventArgs> FormatNumber;
System.Web.Entity (52)
System\Data\WebControls\EntityDataSource.cs (13)
917event EventHandler<DynamicValidatorEventArgs> IDynamicDataSource.Exception 931public event EventHandler<EntityDataSourceContextCreatingEventArgs> ContextCreating 945public event EventHandler<EntityDataSourceContextCreatedEventArgs> ContextCreated 959public event EventHandler<EntityDataSourceContextDisposingEventArgs> ContextDisposing 975public event EventHandler<EntityDataSourceSelectingEventArgs> Selecting 989public event EventHandler<EntityDataSourceSelectedEventArgs> Selected 1004public event EventHandler<EntityDataSourceChangingEventArgs> Deleting 1017public event EventHandler<EntityDataSourceChangedEventArgs> Deleted 1032public event EventHandler<EntityDataSourceChangingEventArgs> Inserting 1045public event EventHandler<EntityDataSourceChangedEventArgs> Inserted 1058public event EventHandler<EntityDataSourceChangedEventArgs> Updated 1073public event EventHandler<EntityDataSourceChangingEventArgs> Updating 1085public event EventHandler<QueryCreatedEventArgs> QueryCreated
System\Data\WebControls\EntityDataSourceView.cs (39)
1202var handler = (EventHandler<QueryCreatedEventArgs>)Events[EventQueryCreated]; 1210public event EventHandler<QueryCreatedEventArgs> QueryCreated 1265var handler = (EventHandler<DynamicValidatorEventArgs>)Events[EventException]; 1271public event EventHandler<DynamicValidatorEventArgs> Exception 1280var handler = (EventHandler<EntityDataSourceContextCreatingEventArgs>)Events[EventContextCreating]; 1286public event EventHandler<EntityDataSourceContextCreatingEventArgs> ContextCreating 1295var handler = (EventHandler<EntityDataSourceContextCreatedEventArgs>)Events[EventContextCreated]; 1301public event EventHandler<EntityDataSourceContextCreatedEventArgs> ContextCreated 1310var handler = (EventHandler<EntityDataSourceContextDisposingEventArgs>)Events[EventContextDisposing]; 1316public event EventHandler<EntityDataSourceContextDisposingEventArgs> ContextDisposing 1325var handler = (EventHandler<EntityDataSourceSelectingEventArgs>)Events[EventSelecting]; 1331public event EventHandler<EntityDataSourceSelectingEventArgs> Selecting 1340var handler = (EventHandler<EntityDataSourceSelectedEventArgs>)Events[EventSelected]; 1346public event EventHandler<EntityDataSourceSelectedEventArgs> Selected 1355var handler = (EventHandler<EntityDataSourceChangingEventArgs>)Events[EventDeleting]; 1361public event EventHandler<EntityDataSourceChangingEventArgs> Deleting 1370var handler = (EventHandler<EntityDataSourceChangedEventArgs>)Events[EventDeleted]; 1376public event EventHandler<EntityDataSourceChangedEventArgs> Deleted 1385var handler = (EventHandler<EntityDataSourceChangingEventArgs>)Events[EventInserting]; 1391public event EventHandler<EntityDataSourceChangingEventArgs> Inserting 1400var handler = (EventHandler<EntityDataSourceChangedEventArgs>)Events[EventInserted]; 1406public event EventHandler<EntityDataSourceChangedEventArgs> Inserted 1415var handler = (EventHandler<EntityDataSourceChangingEventArgs>)Events[EventUpdating]; 1421public event EventHandler<EntityDataSourceChangingEventArgs> Updating 1430var handler = (EventHandler<EntityDataSourceChangedEventArgs>)Events[EventUpdated]; 1436public event EventHandler<EntityDataSourceChangedEventArgs> Updated
System.Web.Extensions (140)
ApplicationServices\AuthenticationService.cs (6)
35private static EventHandler<AuthenticatingEventArgs> _authenticating; 36public static event EventHandler<AuthenticatingEventArgs> Authenticating { 54private static EventHandler<CreatingCookieEventArgs> _creatingCookie; 55public static event EventHandler<CreatingCookieEventArgs> CreatingCookie { 75EventHandler<AuthenticatingEventArgs> handler = _authenticating; 85EventHandler<CreatingCookieEventArgs> handler = _creatingCookie;
ApplicationServices\ProfileService.cs (3)
32private static EventHandler<ValidatingPropertiesEventArgs> _validatingProperties; 33public static event EventHandler<ValidatingPropertiesEventArgs> ValidatingProperties { 50EventHandler<ValidatingPropertiesEventArgs> handler = _validatingProperties;
ApplicationServices\RoleService.cs (3)
31private static EventHandler<SelectingProviderEventArgs> _selectingProvider; 33public static event EventHandler<SelectingProviderEventArgs> SelectingProvider { 110EventHandler<SelectingProviderEventArgs> handler = _selectingProvider;
ClientServices\Providers\ClientFormsAuthenticationMembershipProvider.cs (1)
268public event EventHandler<UserValidatedEventArgs> UserValidated ; /*{
ClientServices\Providers\ClientSettingsProvider.cs (1)
368public event EventHandler<SettingsSavedEventArgs> SettingsSaved;
DynamicData\IDynamicDataSource.cs (1)
23event EventHandler<DynamicValidatorEventArgs> Exception;
UI\ScriptManager.cs (12)
859public event EventHandler<AsyncPostBackErrorEventArgs> AsyncPostBackError { 872public event EventHandler<HistoryEventArgs> Navigate { 885public event EventHandler<CompositeScriptReferenceEventArgs> ResolveCompositeScriptReference { 898public event EventHandler<ScriptReferenceEventArgs> ResolveScriptReference { 1243EventHandler<AsyncPostBackErrorEventArgs> handler = 1244(EventHandler<AsyncPostBackErrorEventArgs>)Events[AsyncPostBackErrorEvent]; 1291EventHandler<HistoryEventArgs> handler = (EventHandler<HistoryEventArgs>)Events[NavigateEvent]; 1367EventHandler<CompositeScriptReferenceEventArgs> handler = 1368(EventHandler<CompositeScriptReferenceEventArgs>)Events[ResolveCompositeScriptReferenceEvent]; 1376EventHandler<ScriptReferenceEventArgs> handler = 1377(EventHandler<ScriptReferenceEventArgs>)Events[ResolveScriptReferenceEvent];
UI\ScriptManagerProxy.cs (3)
102internal EventHandler<HistoryEventArgs> NavigateEvent { 104return (EventHandler<HistoryEventArgs>)Events[_navigateEvent]; 212public event EventHandler<HistoryEventArgs> Navigate {
UI\Timer.cs (3)
123public event EventHandler<EventArgs> Tick { 189EventHandler<EventArgs> handler = (EventHandler<EventArgs>)Events[TickEventKey];
UI\WebControls\Expressions\CustomExpression.cs (2)
17private EventHandler<CustomExpressionEventArgs> _querying; 19public event EventHandler<CustomExpressionEventArgs> Querying {
UI\WebControls\IPageableItemContainer.cs (1)
20event EventHandler<PageEventArgs> TotalRowCountAvailable;
UI\WebControls\IQueryableDataSource.cs (1)
12event EventHandler<QueryCreatedEventArgs> QueryCreated;
UI\WebControls\LinqDataSource.cs (12)
399public event EventHandler<LinqDataSourceStatusEventArgs> ContextCreated { 412public event EventHandler<LinqDataSourceContextEventArgs> ContextCreating { 425public event EventHandler<LinqDataSourceDisposeEventArgs> ContextDisposing { 438public event EventHandler<LinqDataSourceStatusEventArgs> Deleted { 451public event EventHandler<LinqDataSourceDeleteEventArgs> Deleting { 464public event EventHandler<LinqDataSourceStatusEventArgs> Inserted { 477public event EventHandler<LinqDataSourceInsertEventArgs> Inserting { 490public event EventHandler<LinqDataSourceStatusEventArgs> Selected { 503public event EventHandler<LinqDataSourceSelectEventArgs> Selecting { 516public event EventHandler<LinqDataSourceStatusEventArgs> Updated { 529public event EventHandler<LinqDataSourceUpdateEventArgs> Updating { 603event EventHandler<DynamicValidatorEventArgs> IDynamicDataSource.Exception {
UI\WebControls\LinqDataSourceView.cs (36)
223public event EventHandler<LinqDataSourceStatusEventArgs> ContextCreated { 232public event EventHandler<LinqDataSourceContextEventArgs> ContextCreating { 241public event EventHandler<LinqDataSourceDisposeEventArgs> ContextDisposing { 250public event EventHandler<LinqDataSourceStatusEventArgs> Deleted { 259public event EventHandler<LinqDataSourceDeleteEventArgs> Deleting { 268internal event EventHandler<DynamicValidatorEventArgs> Exception { 277public event EventHandler<LinqDataSourceStatusEventArgs> Inserted { 286public event EventHandler<LinqDataSourceInsertEventArgs> Inserting { 295public event EventHandler<LinqDataSourceStatusEventArgs> Selected { 304public event EventHandler<LinqDataSourceSelectEventArgs> Selecting { 313public event EventHandler<LinqDataSourceStatusEventArgs> Updated { 322public event EventHandler<LinqDataSourceUpdateEventArgs> Updating { 719EventHandler<LinqDataSourceStatusEventArgs> handler = (EventHandler<LinqDataSourceStatusEventArgs>)Events[EventContextCreated]; 727EventHandler<LinqDataSourceContextEventArgs> handler = (EventHandler<LinqDataSourceContextEventArgs>)Events[EventContextCreating]; 735EventHandler<LinqDataSourceDisposeEventArgs> handler = (EventHandler<LinqDataSourceDisposeEventArgs>)Events[EventContextDisposing]; 743EventHandler<LinqDataSourceStatusEventArgs> handler = 744(EventHandler<LinqDataSourceStatusEventArgs>)Events[EventDeleted]; 752EventHandler<LinqDataSourceDeleteEventArgs> handler = 753(EventHandler<LinqDataSourceDeleteEventArgs>)Events[EventDeleting]; 761EventHandler<DynamicValidatorEventArgs> handler = (EventHandler<DynamicValidatorEventArgs>)Events[EventException]; 769EventHandler<LinqDataSourceStatusEventArgs> handler = 770(EventHandler<LinqDataSourceStatusEventArgs>)Events[EventInserted]; 778EventHandler<LinqDataSourceInsertEventArgs> handler = 779(EventHandler<LinqDataSourceInsertEventArgs>)Events[EventInserting]; 787EventHandler<LinqDataSourceStatusEventArgs> handler = 788(EventHandler<LinqDataSourceStatusEventArgs>)Events[EventSelected]; 796EventHandler<LinqDataSourceSelectEventArgs> handler = 797(EventHandler<LinqDataSourceSelectEventArgs>)Events[EventSelecting]; 805EventHandler<LinqDataSourceStatusEventArgs> handler = 806(EventHandler<LinqDataSourceStatusEventArgs>)Events[EventUpdated]; 814EventHandler<LinqDataSourceUpdateEventArgs> handler = 815(EventHandler<LinqDataSourceUpdateEventArgs>)Events[EventUpdating];
UI\WebControls\ListView.cs (48)
990public event EventHandler<ListViewDeletedEventArgs> ItemDeleted { 1007public event EventHandler<ListViewInsertedEventArgs> ItemInserted { 1024public event EventHandler<ListViewUpdatedEventArgs> ItemUpdated { 1042public event EventHandler<ListViewCancelEventArgs> ItemCanceling { 1059public event EventHandler<ListViewCommandEventArgs> ItemCommand { 1075public event EventHandler<ListViewItemEventArgs> ItemCreated { 1091public event EventHandler<ListViewItemEventArgs> ItemDataBound { 1108public event EventHandler<ListViewDeleteEventArgs> ItemDeleting { 1126public event EventHandler<ListViewEditEventArgs> ItemEditing { 1143public event EventHandler<ListViewInsertEventArgs> ItemInserting { 1160public event EventHandler<ListViewUpdateEventArgs> ItemUpdating { 1208public event EventHandler<PagePropertiesChangingEventArgs> PagePropertiesChanging { 1240public event EventHandler<ListViewSelectEventArgs> SelectedIndexChanging { 1272public event EventHandler<ListViewSortEventArgs> Sorting { 2834EventHandler<ListViewCancelEventArgs> handler = (EventHandler<ListViewCancelEventArgs>)Events[EventItemCanceling]; 2850EventHandler<ListViewCommandEventArgs> handler = (EventHandler<ListViewCommandEventArgs>)Events[EventItemCommand]; 2861EventHandler<ListViewItemEventArgs> handler = (EventHandler<ListViewItemEventArgs>)Events[EventItemCreated]; 2872EventHandler<ListViewItemEventArgs> handler = (EventHandler<ListViewItemEventArgs>)Events[EventItemDataBound]; 2880var wizardListHandler = (EventHandler<WizardSideBarListControlItemEventArgs>)Events[EventWizardListItemDataBound]; 2893EventHandler<ListViewDeletedEventArgs> handler = (EventHandler<ListViewDeletedEventArgs>)Events[EventItemDeleted]; 2904EventHandler<ListViewDeleteEventArgs> handler = (EventHandler<ListViewDeleteEventArgs>)Events[EventItemDeleting]; 2920EventHandler<ListViewEditEventArgs> handler = (EventHandler<ListViewEditEventArgs>)Events[EventItemEditing]; 2936EventHandler<ListViewInsertedEventArgs> handler = (EventHandler<ListViewInsertedEventArgs>)Events[EventItemInserted]; 2947EventHandler<ListViewInsertEventArgs> handler = (EventHandler<ListViewInsertEventArgs>)Events[EventItemInserting]; 2963EventHandler<ListViewUpdatedEventArgs> handler = (EventHandler<ListViewUpdatedEventArgs>)Events[EventItemUpdated]; 2972EventHandler<ListViewUpdateEventArgs> handler = (EventHandler<ListViewUpdateEventArgs>)Events[EventItemUpdating]; 3010EventHandler<PagePropertiesChangingEventArgs> handler = (EventHandler<PagePropertiesChangingEventArgs>)Events[EventPagePropertiesChanging]; 3021EventHandler<PageEventArgs> handler = (EventHandler<PageEventArgs>)Events[EventTotalRowCountAvailable]; 3043EventHandler<ListViewSelectEventArgs> handler = (EventHandler<ListViewSelectEventArgs>)Events[EventSelectedIndexChanging]; 3070EventHandler<ListViewSortEventArgs> handler = (EventHandler<ListViewSortEventArgs>)Events[EventSorting]; 3383event EventHandler<PageEventArgs> IPageableItemContainer.TotalRowCountAvailable { 3514event EventHandler<WizardSideBarListControlItemEventArgs> IWizardSideBarListControl.ItemDataBound {
UI\WebControls\QueryableDataSource.cs (1)
145public event EventHandler<QueryCreatedEventArgs> QueryCreated {
UI\WebControls\QueryableDataSourceView.cs (3)
789public event EventHandler<QueryCreatedEventArgs> QueryCreated { 800EventHandler<QueryCreatedEventArgs> handler = (EventHandler<QueryCreatedEventArgs>)Events[EventQueryCreated];
UI\WebControls\TemplatePagerField.cs (3)
64public event EventHandler<DataPagerCommandEventArgs> PagerCommand { 114EventHandler<DataPagerCommandEventArgs> handler = (EventHandler<DataPagerCommandEventArgs>)Events[EventPagerCommand];
System.Windows.Forms.DataVisualization (19)
Common\General\BaseCollections.cs (4)
348internal event EventHandler<NameReferenceChangedEventArgs> NameReferenceChanged; 349internal event EventHandler<NameReferenceChangedEventArgs> NameReferenceChanging; 586EventHandler<NameReferenceChangedEventArgs> changingCallback, 587EventHandler<NameReferenceChangedEventArgs> changedCallback)
Common\General\Chart.cs (2)
1497internal event EventHandler<ChartPaintEventArgs> BeforePaint; 1498internal event EventHandler<ChartPaintEventArgs> AfterPaint;
WinForm\ChartWinControl.cs (13)
2391public event EventHandler<ToolTipEventArgs> GetToolTipText; 2428public event EventHandler<CursorEventArgs> CursorPositionChanging; 2435public event EventHandler<CursorEventArgs> CursorPositionChanged; 2442public event EventHandler<CursorEventArgs> SelectionRangeChanging; 2449public event EventHandler<CursorEventArgs> SelectionRangeChanged; 2509public event EventHandler<ViewEventArgs> AxisViewChanging; 2516public event EventHandler<ViewEventArgs> AxisViewChanged; 2552public event EventHandler<ScrollBarEventArgs> AxisScrollBarClicked; 2576public event EventHandler<ChartPaintEventArgs> PostPaint; 2583public event EventHandler<ChartPaintEventArgs> PrePaint; 2672public event EventHandler<CustomizeLegendEventArgs> CustomizeLegend; 2747public event EventHandler<AnnotationPositionChangingEventArgs> AnnotationPositionChanging; 3011public event EventHandler<FormatNumberEventArgs> FormatNumber;
System.Workflow.Activities (20)
CodeExpressionRuleDeclaration.cs (6)
23public static readonly DependencyProperty ConditionEvent = DependencyProperty.Register("Condition", typeof(EventHandler<ConditionalEventArgs>), typeof(CodeCondition)); 28public event EventHandler<ConditionalEventArgs> Condition 64EventHandler<ConditionalEventArgs>[] eventHandlers = base.GetInvocationList<EventHandler<ConditionalEventArgs>>(CodeCondition.ConditionEvent); 70foreach (EventHandler<ConditionalEventArgs> eventHandler in eventHandlers) 95if (codeCondition.GetInvocationList<EventHandler<ConditionalEventArgs>>(CodeCondition.ConditionEvent).Length == 0 &&
EventSinkActivity.cs (2)
41public static readonly DependencyProperty InvokedEvent = DependencyProperty.Register("Invoked", typeof(EventHandler<ExternalDataEventArgs>), typeof(HandleExternalEventActivity)); 145public event EventHandler<ExternalDataEventArgs> Invoked
Executors\WorkflowWebService.cs (2)
63EventHandler<WorkflowTerminatedEventArgs> workflowTerminationHandler = null; 64EventHandler<WorkflowCompletedEventArgs> workflowCompletedHandler = null;
InvokeWebService.cs (4)
66public static readonly DependencyProperty InvokingEvent = DependencyProperty.Register("Invoking", typeof(EventHandler<InvokeWebServiceEventArgs>), typeof(InvokeWebServiceActivity)); 67public static readonly DependencyProperty InvokedEvent = DependencyProperty.Register("Invoked", typeof(EventHandler<InvokeWebServiceEventArgs>), typeof(InvokeWebServiceActivity)); 253public event EventHandler<InvokeWebServiceEventArgs> Invoking 268public event EventHandler<InvokeWebServiceEventArgs> Invoked
Rules\Design\Dialogs\IntellisenseTextBox.cs (2)
23public event EventHandler<AutoCompletionEventArgs> PopulateAutoCompleteList; 24public event EventHandler<AutoCompletionEventArgs> PopulateToolTipList;
Task.cs (4)
44public static readonly DependencyProperty ChildInitializedEvent = DependencyProperty.Register("ChildInitialized", typeof(EventHandler<ReplicatorChildEventArgs>), typeof(ReplicatorActivity)); 45public static readonly DependencyProperty ChildCompletedEvent = DependencyProperty.Register("ChildCompleted", typeof(EventHandler<ReplicatorChildEventArgs>), typeof(ReplicatorActivity)); 198public event EventHandler<ReplicatorChildEventArgs> ChildInitialized 213public event EventHandler<ReplicatorChildEventArgs> ChildCompleted
System.Workflow.ComponentModel (35)
AuthoringOM\ActivitiesCollection.cs (2)
16internal event EventHandler<ActivityCollectionChangeEventArgs> ListChanging; 17public event EventHandler<ActivityCollectionChangeEventArgs> ListChanged;
AuthoringOM\Activity.cs (20)
340EventHandler<T>[] eventHandlers = ((IDependencyObjectAccessor)this).GetInvocationList<EventHandler<T>>(dependencyEvent); 343foreach (EventHandler<T> eventHandler in eventHandlers) 418protected internal void Invoke<T>(EventHandler<T> handler, T e) where T : EventArgs 557public static readonly DependencyProperty StatusChangedEvent = DependencyProperty.Register("StatusChanged", typeof(EventHandler<ActivityExecutionStatusChangedEventArgs>), typeof(Activity)); 560public event EventHandler<ActivityExecutionStatusChangedEventArgs> StatusChanged 572internal static readonly DependencyProperty LockCountOnStatusChangeChangedEvent = DependencyProperty.Register("LockCountOnStatusChangeChanged", typeof(EventHandler<ActivityExecutionStatusChangedEventArgs>), typeof(Activity)); 573internal static readonly DependencyProperty StatusChangedLockedEvent = DependencyProperty.Register("StatusChangedLocked", typeof(EventHandler<ActivityExecutionStatusChangedEventArgs>), typeof(Activity)); 634public static readonly DependencyProperty CancelingEvent = DependencyProperty.Register("Canceling", typeof(EventHandler<ActivityExecutionStatusChangedEventArgs>), typeof(Activity)); 638public event EventHandler<ActivityExecutionStatusChangedEventArgs> Canceling 650public static readonly DependencyProperty FaultingEvent = DependencyProperty.Register("Faulting", typeof(EventHandler<ActivityExecutionStatusChangedEventArgs>), typeof(Activity)); 654public event EventHandler<ActivityExecutionStatusChangedEventArgs> Faulting 667public static readonly DependencyProperty ClosedEvent = DependencyProperty.Register("Closed", typeof(EventHandler<ActivityExecutionStatusChangedEventArgs>), typeof(Activity)); 671public event EventHandler<ActivityExecutionStatusChangedEventArgs> Closed 683public static readonly DependencyProperty ExecutingEvent = DependencyProperty.Register("Executing", typeof(EventHandler<ActivityExecutionStatusChangedEventArgs>), typeof(Activity)); 687public event EventHandler<ActivityExecutionStatusChangedEventArgs> Executing 699public static readonly DependencyProperty CompensatingEvent = DependencyProperty.Register("Compensating", typeof(EventHandler<ActivityExecutionStatusChangedEventArgs>), typeof(Activity)); 703public event EventHandler<ActivityExecutionStatusChangedEventArgs> Compensating 714private void AddStatusChangeHandler(DependencyProperty dependencyProp, EventHandler<ActivityExecutionStatusChangedEventArgs> delegateValue) 728private void RemoveStatusChangeHandler(DependencyProperty dependencyProp, EventHandler<ActivityExecutionStatusChangedEventArgs> delegateValue)
AuthoringOM\ActivityExecutionContext.cs (2)
360internal void Invoke<T>(EventHandler<T> handler, T e) where T : EventArgs 615internal void RequestRevertToCheckpointState(EventHandler<EventArgs> handler, EventArgs data, bool suspendOnRevert, string suspendOnRevertInfo)
AuthoringOM\ActivityExecutorDelegateInfo.cs (7)
20private EventHandler<T> delegateValue = null; 25public ActivityExecutorDelegateInfo(EventHandler<T> delegateValue, Activity contextActivity) 33public ActivityExecutorDelegateInfo(EventHandler<T> delegateValue, Activity contextActivity, bool wantInTransact) 43internal ActivityExecutorDelegateInfo(bool useCurrentContext, EventHandler<T> delegateValue, Activity contextActivity) 108public EventHandler<T> HandlerDelegate 266private EventHandler<T> delegateValue = null; 272public ActivityExecutorDelegateOperation(string activityQualifiedName, EventHandler<T> delegateValue, T e, int contextId)
AuthoringOM\ActivityInterfaces.cs (1)
161void RequestRevertToCheckpointState(Activity currentActivity, EventHandler<EventArgs> callbackHandler, EventArgs callbackData, bool suspendOnRevert, string suspendReason);
AuthoringOM\Bind.cs (2)
1360public EventHandler<PathMemberInfoEventArgs> MemberFound; //on every member along the path 1361public EventHandler<PathErrorInfoEventArgs> PathErrorFound; //if there was an error parsing or walking the path
AuthoringOM\Serializer\WorkflowMarkupSerializationManager.cs (1)
35internal event EventHandler<WorkflowMarkupElementEventArgs> FoundDefTag;
System.Workflow.Runtime (53)
KeyedPriorityQueue.cs (2)
41public event EventHandler<KeyedPriorityQueueHeadChangedEventArgs<V>> FirstElementChanged; 164EventHandler<KeyedPriorityQueueHeadChangedEventArgs<V>> fec = FirstElementChanged;
System\Activities\Statements\InteropExecutor.cs (1)
726public void RequestRevertToCheckpointState(Activity currentActivity, EventHandler<EventArgs> callbackHandler, EventArgs callbackData, bool suspendOnRevert, string suspendReason)
Tracking\IProfileNotification.cs (2)
23event EventHandler<ProfileUpdatedEventArgs> ProfileUpdated; 27event EventHandler<ProfileRemovedEventArgs> ProfileRemoved;
Tracking\SqlTrackingService.cs (2)
238public event EventHandler<ProfileUpdatedEventArgs> ProfileUpdated; 240public event EventHandler<ProfileRemovedEventArgs> ProfileRemoved;
WorkflowDefinitionDispenser.cs (3)
41internal event EventHandler<WorkflowDefinitionEventArgs> WorkflowDefinitionLoaded; 127EventHandler<WorkflowDefinitionEventArgs> localWorkflowDefinitionLoaded = WorkflowDefinitionLoaded; 184EventHandler<WorkflowDefinitionEventArgs> localWorkflowDefinitionLoaded = WorkflowDefinitionLoaded;
WorkflowExecutor.cs (18)
2925void IWorkflowCoreRuntime.RequestRevertToCheckpointState(Activity currentActivity, EventHandler<EventArgs> callbackHandler, EventArgs callbackData, bool suspendOnRevert, string suspendInfo) 3226private event EventHandler<WorkflowExecutionEventArgs> _workflowExecutionEvent; 3248internal event EventHandler<WorkflowExecutor.WorkflowExecutionEventArgs> WorkflowExecutionEvent 3265EventHandler<WorkflowExecutionEventArgs> localWorkflowExecutionEvent = this._workflowExecutionEvent; 3275EventHandler<WorkflowExecutionEventArgs> localWorkflowExecutionEvent = this._workflowExecutionEvent; 3317EventHandler<WorkflowExecutionEventArgs> localWorkflowExecutionEvent = this._workflowExecutionEvent; 3328EventHandler<WorkflowExecutionEventArgs> localWorkflowExecutionEvent = this._workflowExecutionEvent; 3384EventHandler<WorkflowExecutionEventArgs> localWorkflowExecutionEvent = this._workflowExecutionEvent; 3453EventHandler<WorkflowExecutionEventArgs> localWorkflowExecutionEvent = this._workflowExecutionEvent; 3463EventHandler<WorkflowExecutionEventArgs> localWorkflowExecutionEvent = this._workflowExecutionEvent; 3473EventHandler<WorkflowExecutionEventArgs> localWorkflowExecutionEvent = this._workflowExecutionEvent; 3483EventHandler<WorkflowExecutionEventArgs> localWorkflowExecutionEvent = this._workflowExecutionEvent; 3510EventHandler<WorkflowExecutionEventArgs> localWorkflowExecutionEvent = this._workflowExecutionEvent; 3521EventHandler<WorkflowExecutionEventArgs> localWorkflowExecutionEvent = this._workflowExecutionEvent; 3532EventHandler<WorkflowExecutionEventArgs> localWorkflowExecutionEvent = this._workflowExecutionEvent; 3577EventHandler<WorkflowExecutionEventArgs> localWorkflowExecutionEvent = this._workflowExecutionEvent; 3586EventHandler<WorkflowExecutionEventArgs> localWorkflowExecutionEvent = this._workflowExecutionEvent; 3628EventHandler<WorkflowExecutionEventArgs> localWorkflowExecutionEvent = this._workflowExecutionEvent;
WorkflowQueue.cs (2)
25public event EventHandler<QueueEventArgs> QueueItemAvailable 97public event EventHandler<QueueEventArgs> QueueItemArrived
WorkflowRuntime.cs (21)
447internal event EventHandler<WorkflowExecutorInitializingEventArgs> WorkflowExecutorInitializing; 448public event EventHandler<WorkflowEventArgs> WorkflowIdled; 449public event EventHandler<WorkflowEventArgs> WorkflowCreated; 450public event EventHandler<WorkflowEventArgs> WorkflowStarted; 451public event EventHandler<WorkflowEventArgs> WorkflowLoaded; 452public event EventHandler<WorkflowEventArgs> WorkflowUnloaded; 453public event EventHandler<WorkflowCompletedEventArgs> WorkflowCompleted; 454public event EventHandler<WorkflowTerminatedEventArgs> WorkflowTerminated; 455public event EventHandler<WorkflowEventArgs> WorkflowAborted; 456public event EventHandler<WorkflowSuspendedEventArgs> WorkflowSuspended; 457public event EventHandler<WorkflowEventArgs> WorkflowPersisted; 458public event EventHandler<WorkflowEventArgs> WorkflowResumed; 459internal event EventHandler<WorkflowEventArgs> WorkflowDynamicallyChanged; 460public event EventHandler<ServicesExceptionNotHandledEventArgs> ServicesExceptionNotHandled; 461public event EventHandler<WorkflowRuntimeEventArgs> Stopped; 462public event EventHandler<WorkflowRuntimeEventArgs> Started; 783private void _OnServiceEvent(WorkflowExecutor sched, bool unregister, EventHandler<WorkflowEventArgs> handler) 810EventHandler<ServicesExceptionNotHandledEventArgs> handler = ServicesExceptionNotHandled; 1174EventHandler<WorkflowRuntimeEventArgs> ss = Started; 1200EventHandler<WorkflowExecutorInitializingEventArgs> localEvent = WorkflowExecutorInitializing; 1375EventHandler<WorkflowRuntimeEventArgs> handler = Stopped;
WorkflowStateRollbackService.cs (2)
27EventHandler<EventArgs> callbackHandler; 55internal void RequestRevertToCheckpointState(Activity currentActivity, EventHandler<EventArgs> callbackHandler, EventArgs callbackData, bool suspendOnRevert, string suspendInfo)
System.WorkflowServices (15)
System\Workflow\Activities\ReceiveActivity.cs (6)
53typeof(EventHandler<OperationValidationEventArgs>), 134public event EventHandler<OperationValidationEventArgs> OperationValidation 1573EventHandler<OperationValidationEventArgs>[] eventHandlers = 1574doa.GetInvocationList<EventHandler<OperationValidationEventArgs>>( 1717EventHandler<OperationValidationEventArgs>[] eventHandlers = 1718doa.GetInvocationList<EventHandler<OperationValidationEventArgs>>(
System\Workflow\Activities\SendActivity.cs (7)
37typeof(EventHandler<SendActivityEventArgs>), 43typeof(EventHandler<SendActivityEventArgs>), 97public event EventHandler<SendActivityEventArgs> AfterResponse 114public event EventHandler<SendActivityEventArgs> BeforeSend 396EventHandler<SendActivityEventArgs>[] invocationList = this.GetInvocationList<EventHandler<SendActivityEventArgs>>(SendActivity.BeforeSendEvent); 440invocationList = this.GetInvocationList<EventHandler<SendActivityEventArgs>>(SendActivity.AfterResponseEvent);
System\Workflow\ComponentModel\Design\ActivityDesignerHighlighter.cs (2)
141public event EventHandler<System.Windows.Forms.KeyEventArgs> KeyDown; 142public event EventHandler<System.Windows.Forms.MouseEventArgs> MouseDown;
System.Xml.Linq (4)
System\Xml\Linq\XLinq.cs (4)
1167public event EventHandler<XObjectChangeEventArgs> Changed { 1191public event EventHandler<XObjectChangeEventArgs> Changing { 1361internal EventHandler<XObjectChangeEventArgs> changing; 1362internal EventHandler<XObjectChangeEventArgs> changed;
WindowsBase (20)
Base\MS\Internal\InheritanceContextChangedEventManager.cs (2)
78public static void AddHandler(DependencyObject source, EventHandler<EventArgs> handler) 89public static void RemoveHandler(DependencyObject source, EventHandler<EventArgs> handler)
Base\System\Collections\Specialized\CollectionChangedEventManager.cs (2)
71public static void AddHandler(INotifyCollectionChanged source, EventHandler<NotifyCollectionChangedEventArgs> handler) 82public static void RemoveHandler(INotifyCollectionChanged source, EventHandler<NotifyCollectionChangedEventArgs> handler)
Base\System\ComponentModel\CurrentChangedEventManager.cs (2)
71public static void AddHandler(ICollectionView source, EventHandler<EventArgs> handler) 82public static void RemoveHandler(ICollectionView source, EventHandler<EventArgs> handler)
Base\System\ComponentModel\CurrentChangingEventManager.cs (2)
72public static void AddHandler(ICollectionView source, EventHandler<CurrentChangingEventArgs> handler) 83public static void RemoveHandler(ICollectionView source, EventHandler<CurrentChangingEventArgs> handler)
Base\System\ComponentModel\ErrorsChangedEventManager.cs (2)
44public static void AddHandler(INotifyDataErrorInfo source, EventHandler<DataErrorsChangedEventArgs> handler) 57public static void RemoveHandler(INotifyDataErrorInfo source, EventHandler<DataErrorsChangedEventArgs> handler)
Base\System\ComponentModel\PropertyChangedEventManager.cs (6)
79public static void AddHandler(INotifyPropertyChanged source, EventHandler<PropertyChangedEventArgs> handler, string propertyName) 90public static void RemoveHandler(INotifyPropertyChanged source, EventHandler<PropertyChangedEventArgs> handler, string propertyName) 385private void PrivateAddHandler(INotifyPropertyChanged source, EventHandler<PropertyChangedEventArgs> handler, string propertyName) 391private void PrivateRemoveHandler(INotifyPropertyChanged source, EventHandler<PropertyChangedEventArgs> handler, string propertyName) 396private void AddListener(INotifyPropertyChanged source, string propertyName, IWeakEventListener listener, EventHandler<PropertyChangedEventArgs> handler) 448private void RemoveListener(INotifyPropertyChanged source, string propertyName, IWeakEventListener listener, EventHandler<PropertyChangedEventArgs> handler)
Base\System\Windows\WeakEventManager.cs (2)
919EventHandler<TEventArgs> handler = (EventHandler<TEventArgs>)listener.Handler;
Base\System\Windows\WeakEventManagerT.cs (2)
47public static void AddHandler(TEventSource source, string eventName, EventHandler<TEventArgs> handler) 58public static void RemoveHandler(TEventSource source, string eventName, EventHandler<TEventArgs> handler)
XamlBuildTask (2)
Microsoft\Build\Tasks\Xaml\XamlValidatingReader.cs (2)
34public event EventHandler<ValidationEventArgs> OnValidationError; 103EventHandler<ValidationEventArgs> handler = OnValidationError;