3 instantiations of ExceptionEventArgs
PresentationCore (3)
System\Windows\Media\Imaging\BitmapSource.cs (1)
960OnDecodeFailed(this, new ExceptionEventArgs(e));
System\Windows\Media\Imaging\LateBoundBitmapDecoder.cs (1)
334_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)
826public virtual event EventHandler<ExceptionEventArgs> DownloadFailed 1655internal UniqueEventHelper<ExceptionEventArgs> _failedEvent = new UniqueEventHelper<ExceptionEventArgs>();
System\Windows\Media\Imaging\BitmapFrameDecode.cs (3)
503private void OnDownloadFailed(object sender, ExceptionEventArgs e) 539private void OnOriginalDownloadFailed(ExceptionEventArgs e) 771public 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)
299public virtual event EventHandler<ExceptionEventArgs> DownloadFailed 317public virtual event EventHandler<ExceptionEventArgs> DecodeFailed 1191private void OnDecodeFailed(object sender, ExceptionEventArgs e) 1248private void OnSourceDownloadFailed(object sender, ExceptionEventArgs e) 1546internal UniqueEventHelper<ExceptionEventArgs> _failedEvent = new UniqueEventHelper<ExceptionEventArgs>(); 1547internal UniqueEventHelper<ExceptionEventArgs> _decodeFailedEvent = new UniqueEventHelper<ExceptionEventArgs>(); 1887public void OnSourceDownloadFailed(object sender, ExceptionEventArgs e)
System\Windows\Media\mediaeventshelper.cs (5)
95internal event EventHandler<ExceptionEventArgs> MediaFailed 463ExceptionEventArgs e = (ExceptionEventArgs)o; 593private UniqueEventHelper<ExceptionEventArgs> _mediaFailedHelper = new UniqueEventHelper<ExceptionEventArgs>();
System\Windows\Media\MediaPlayer.cs (1)
290public event EventHandler<ExceptionEventArgs> MediaFailed
System\Windows\Media\MediaPlayerState.cs (1)
466internal 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)
880ExceptionEventArgs args