3 instantiations of ExceptionEventArgs
PresentationCore (3)
System\Windows\Media\Imaging\BitmapSource.cs (1)
1007OnDecodeFailed(this, new ExceptionEventArgs(e));
System\Windows\Media\Imaging\LateBoundBitmapDecoder.cs (1)
362_failedEvent.InvokeEvents(this, new ExceptionEventArgs((Exception)arg));
System\Windows\Media\mediaeventshelper.cs (1)
232new ExceptionEventArgs(e));
39 references to ExceptionEventArgs
PresentationCore (23)
System\Windows\Media\Imaging\BitmapDecoder.cs (3)
849public virtual event EventHandler<ExceptionEventArgs> DownloadFailed 1683internal UniqueEventHelper<ExceptionEventArgs> _failedEvent = new UniqueEventHelper<ExceptionEventArgs>();
System\Windows\Media\Imaging\BitmapFrameDecode.cs (3)
526private void OnDownloadFailed(object sender, ExceptionEventArgs e) 562private void OnOriginalDownloadFailed(ExceptionEventArgs e) 794public void OnSourceDownloadFailed(object sender, ExceptionEventArgs e)
System\Windows\Media\Imaging\BitmapImage.cs (1)
897private void OnDownloadFailed(object sender, ExceptionEventArgs e)
System\Windows\Media\Imaging\BitmapSource.cs (9)
314public virtual event EventHandler<ExceptionEventArgs> DownloadFailed 332public virtual event EventHandler<ExceptionEventArgs> DecodeFailed 1238private void OnDecodeFailed(object sender, ExceptionEventArgs e) 1295private void OnSourceDownloadFailed(object sender, ExceptionEventArgs e) 1593internal UniqueEventHelper<ExceptionEventArgs> _failedEvent = new UniqueEventHelper<ExceptionEventArgs>(); 1594internal UniqueEventHelper<ExceptionEventArgs> _decodeFailedEvent = new UniqueEventHelper<ExceptionEventArgs>(); 1934public void OnSourceDownloadFailed(object sender, ExceptionEventArgs e)
System\Windows\Media\mediaeventshelper.cs (5)
106internal event EventHandler<ExceptionEventArgs> MediaFailed 473ExceptionEventArgs e = (ExceptionEventArgs)o; 603private UniqueEventHelper<ExceptionEventArgs> _mediaFailedHelper = new UniqueEventHelper<ExceptionEventArgs>();
System\Windows\Media\MediaPlayer.cs (1)
318public event EventHandler<ExceptionEventArgs> MediaFailed
System\Windows\Media\MediaPlayerState.cs (1)
489internal event EventHandler<ExceptionEventArgs> MediaFailed
PresentationFramework (16)
System\Windows\Controls\AVElementHelper.cs (2)
344_mediaPlayer.MediaFailed += new EventHandler<ExceptionEventArgs>(OnMediaFailed); 745ExceptionEventArgs args
System\Windows\Controls\Image.cs (13)
431private void OnSourceFailed(object sender, ExceptionEventArgs e) 670public static void AddHandler(BitmapSource source, EventHandler<ExceptionEventArgs> handler) 680public static void RemoveHandler(BitmapSource source, EventHandler<ExceptionEventArgs> handler) 700return new ListenerList<ExceptionEventArgs>(); 709typedSource.DownloadFailed += new EventHandler<ExceptionEventArgs>(OnDownloadFailed); 720typedSource.DownloadFailed -= new EventHandler<ExceptionEventArgs>(OnDownloadFailed); 760private void OnDownloadFailed(object sender, ExceptionEventArgs args) 794public static void AddHandler(BitmapSource source, EventHandler<ExceptionEventArgs> handler) 804public static void RemoveHandler(BitmapSource source, EventHandler<ExceptionEventArgs> handler) 824return new ListenerList<ExceptionEventArgs>(); 833typedSource.DecodeFailed += new EventHandler<ExceptionEventArgs>(OnDecodeFailed); 844typedSource.DecodeFailed -= new EventHandler<ExceptionEventArgs>(OnDecodeFailed); 884private void OnDecodeFailed(object sender, ExceptionEventArgs args)
System\Windows\Controls\MediaElement.cs (1)
905ExceptionEventArgs args