3 instantiations of ExceptionEventArgs
PresentationCore (3)
System\Windows\Media\Imaging\BitmapSource.cs (1)
959OnDecodeFailed(this, new ExceptionEventArgs(e));
System\Windows\Media\Imaging\LateBoundBitmapDecoder.cs (1)
333_failedEvent.InvokeEvents(this, new ExceptionEventArgs((Exception)arg));
System\Windows\Media\mediaeventshelper.cs (1)
220new ExceptionEventArgs(e));
39 references to ExceptionEventArgs
PresentationCore (23)
System\Windows\Media\Imaging\BitmapDecoder.cs (3)
825public virtual event EventHandler<ExceptionEventArgs> DownloadFailed 1654internal UniqueEventHelper<ExceptionEventArgs> _failedEvent = new UniqueEventHelper<ExceptionEventArgs>();
System\Windows\Media\Imaging\BitmapFrameDecode.cs (3)
502private void OnDownloadFailed(object sender, ExceptionEventArgs e) 538private void OnOriginalDownloadFailed(ExceptionEventArgs e) 770public void OnSourceDownloadFailed(object sender, ExceptionEventArgs e)
System\Windows\Media\Imaging\BitmapImage.cs (1)
878private 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 1190private void OnDecodeFailed(object sender, ExceptionEventArgs e) 1247private void OnSourceDownloadFailed(object sender, ExceptionEventArgs e) 1545internal UniqueEventHelper<ExceptionEventArgs> _failedEvent = new UniqueEventHelper<ExceptionEventArgs>(); 1546internal UniqueEventHelper<ExceptionEventArgs> _decodeFailedEvent = new UniqueEventHelper<ExceptionEventArgs>(); 1886public void OnSourceDownloadFailed(object sender, ExceptionEventArgs e)
System\Windows\Media\mediaeventshelper.cs (5)
94internal event EventHandler<ExceptionEventArgs> MediaFailed 462ExceptionEventArgs e = (ExceptionEventArgs)o; 592private UniqueEventHelper<ExceptionEventArgs> _mediaFailedHelper = new UniqueEventHelper<ExceptionEventArgs>();
System\Windows\Media\MediaPlayer.cs (1)
289public event EventHandler<ExceptionEventArgs> MediaFailed
System\Windows\Media\MediaPlayerState.cs (1)
465internal event EventHandler<ExceptionEventArgs> MediaFailed
PresentationFramework (16)
System\Windows\Controls\AVElementHelper.cs (2)
336_mediaPlayer.MediaFailed += new EventHandler<ExceptionEventArgs>(OnMediaFailed); 737ExceptionEventArgs args
System\Windows\Controls\Image.cs (13)
422private void OnSourceFailed(object sender, ExceptionEventArgs e) 661public static void AddHandler(BitmapSource source, EventHandler<ExceptionEventArgs> handler) 671public static void RemoveHandler(BitmapSource source, EventHandler<ExceptionEventArgs> handler) 691return new ListenerList<ExceptionEventArgs>(); 700typedSource.DownloadFailed += new EventHandler<ExceptionEventArgs>(OnDownloadFailed); 711typedSource.DownloadFailed -= new EventHandler<ExceptionEventArgs>(OnDownloadFailed); 751private void OnDownloadFailed(object sender, ExceptionEventArgs args) 785public static void AddHandler(BitmapSource source, EventHandler<ExceptionEventArgs> handler) 795public static void RemoveHandler(BitmapSource source, EventHandler<ExceptionEventArgs> handler) 815return new ListenerList<ExceptionEventArgs>(); 824typedSource.DecodeFailed += new EventHandler<ExceptionEventArgs>(OnDecodeFailed); 835typedSource.DecodeFailed -= new EventHandler<ExceptionEventArgs>(OnDecodeFailed); 875private void OnDecodeFailed(object sender, ExceptionEventArgs args)
System\Windows\Controls\MediaElement.cs (1)
879ExceptionEventArgs args