3 instantiations of ExceptionEventArgs
PresentationCore (3)
System\Windows\Media\Imaging\BitmapSource.cs (1)
990OnDecodeFailed(this, new ExceptionEventArgs(e));
System\Windows\Media\Imaging\LateBoundBitmapDecoder.cs (1)
342_failedEvent.InvokeEvents(this, new ExceptionEventArgs((Exception)arg));
System\Windows\Media\mediaeventshelper.cs (1)
221new ExceptionEventArgs(e));
39 references to ExceptionEventArgs
PresentationCore (23)
System\Windows\Media\Imaging\BitmapDecoder.cs (3)
831public virtual event EventHandler<ExceptionEventArgs> DownloadFailed 1665internal UniqueEventHelper<ExceptionEventArgs> _failedEvent = new UniqueEventHelper<ExceptionEventArgs>();
System\Windows\Media\Imaging\BitmapFrameDecode.cs (3)
511private void OnDownloadFailed(object sender, ExceptionEventArgs e) 547private void OnOriginalDownloadFailed(ExceptionEventArgs e) 779public void OnSourceDownloadFailed(object sender, ExceptionEventArgs e)
System\Windows\Media\Imaging\BitmapImage.cs (1)
879private void OnDownloadFailed(object sender, ExceptionEventArgs e)
System\Windows\Media\Imaging\BitmapSource.cs (9)
298public virtual event EventHandler<ExceptionEventArgs> DownloadFailed 316public virtual event EventHandler<ExceptionEventArgs> DecodeFailed 1221private void OnDecodeFailed(object sender, ExceptionEventArgs e) 1278private void OnSourceDownloadFailed(object sender, ExceptionEventArgs e) 1576internal UniqueEventHelper<ExceptionEventArgs> _failedEvent = new UniqueEventHelper<ExceptionEventArgs>(); 1577internal UniqueEventHelper<ExceptionEventArgs> _decodeFailedEvent = new UniqueEventHelper<ExceptionEventArgs>(); 1917public void OnSourceDownloadFailed(object sender, ExceptionEventArgs e)
System\Windows\Media\mediaeventshelper.cs (5)
95internal event EventHandler<ExceptionEventArgs> MediaFailed 462ExceptionEventArgs e = (ExceptionEventArgs)o; 592private UniqueEventHelper<ExceptionEventArgs> _mediaFailedHelper = new UniqueEventHelper<ExceptionEventArgs>();
System\Windows\Media\MediaPlayer.cs (1)
295public event EventHandler<ExceptionEventArgs> MediaFailed
System\Windows\Media\MediaPlayerState.cs (1)
468internal event EventHandler<ExceptionEventArgs> MediaFailed
PresentationFramework (16)
System\Windows\Controls\AVElementHelper.cs (2)
337_mediaPlayer.MediaFailed += new EventHandler<ExceptionEventArgs>(OnMediaFailed); 738ExceptionEventArgs args
System\Windows\Controls\Image.cs (13)
423private void OnSourceFailed(object sender, ExceptionEventArgs e) 662public static void AddHandler(BitmapSource source, EventHandler<ExceptionEventArgs> handler) 672public static void RemoveHandler(BitmapSource source, EventHandler<ExceptionEventArgs> handler) 692return new ListenerList<ExceptionEventArgs>(); 701typedSource.DownloadFailed += new EventHandler<ExceptionEventArgs>(OnDownloadFailed); 712typedSource.DownloadFailed -= new EventHandler<ExceptionEventArgs>(OnDownloadFailed); 752private void OnDownloadFailed(object sender, ExceptionEventArgs args) 786public static void AddHandler(BitmapSource source, EventHandler<ExceptionEventArgs> handler) 796public static void RemoveHandler(BitmapSource source, EventHandler<ExceptionEventArgs> handler) 816return new ListenerList<ExceptionEventArgs>(); 825typedSource.DecodeFailed += new EventHandler<ExceptionEventArgs>(OnDecodeFailed); 836typedSource.DecodeFailed -= new EventHandler<ExceptionEventArgs>(OnDecodeFailed); 876private void OnDecodeFailed(object sender, ExceptionEventArgs args)
System\Windows\Controls\MediaElement.cs (1)
898ExceptionEventArgs args