Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7601317
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T23:08:20+00:00 2026-05-30T23:08:20+00:00

var image = new BitmapImage(); image.ImageFailed += (s, e) => { // … };

  • 0
 var image = new BitmapImage();
     image.ImageFailed += (s, e) => {
       // ...
     };
     image.UriSource = new Uri("someurl", UriKind.Absolute);

In the documentation it’s mentioned that the ImageFailed event can be raised by:

  • File not found.
  • Invalid (unrecognized or unsupported) file format.
  • Unknown file format decoding error after upload

Is it possible to detect which one of these conditions caused it inside the event?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T23:08:21+00:00Added an answer on May 30, 2026 at 11:08 pm

    Yes, since the event argument is a ExceptionRoutedEventArgs which have a ErrorException property, in which you can check for following exception types:

    • SecurityException
    • FileNotFoundException
    • NotSupportedException
    • COMException

    Read the details on MSDN

    Example:

    var image = new BitmapImage();
    image.ImageFailed += (s, e) => 
    {
        if (e.ErrorException is FileNotFoundException)
             // File not found.
        else if (e.ErrorException is NotSupportedException)
            // Unknown file format decoding error after upload
        else
            // Really bad stuff happened!    
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here is a code. var image = new BitmapImage(new Uri(@pack://application:,,,/Images/background.png, UriKind.RelativeOrAbsolute)); var backgroundBrush =
I already did this: var uriSource = new Uri(@/WpfApplication1;component/Untitled.png, UriKind.Relative); image1.Source = new BitmapImage(uriSource);
image naturalWidth return zero... that's it, why ? var newimage = new Image(); newimage.src
I need converter if image not exist or null return new BitmapImage(new Uri(http://upload.wikimedia.org/wikipedia/commons/1/1c/No-Symbol.png)) else
If I write something like this: var img = $(new Image()).attr('src', image.src); How can
var gallery = new TGallery([[{image:{updated_at:2010-03-20T00:00:00Z,title:dfgdfg,spam_reports:0,by_profile_id:1,comment_count:0,id:1,description:htt,on_type:profile,adult_reports:0,on_id:1,created_at:2010-03-20T00:00:00Z}]]); Then in the TGallery class I would like to
I have the following script that changes my image on a timer: var da
I've defined a BitmapImage in my ResourceDictionary like that: <BitmapImage x:Key=Skin_Image_Back UriSource=./images/back.png /> and
I have problem with converter from Uri to BitmapImage. Uri is url of image
Hay, i'm using this script function preloader(images){ var i = 0; imageObj = new

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.