Windowscommunitytoolkit: The component cannot be found if Image Url 404

Created on 16 Dec 2016  Â·  36Comments  Â·  Source: windows-toolkit/WindowsCommunityToolkit

Hi,
I got an exception when using ImageEx.
This happend if image url 404.

Please check it in RELEASE mode. DEBUG mode work fine.

Exception thrown: 'System.Exception' in System.Private.CoreLib.dll

Additional information: The component cannot be found. (Excep_FromHResult 0x88982F50)

If there is a handler for this exception, the program may be safely continued.

Thanks!

bug controls

All 36 comments

Where do you have this issue?

I made an ItemTemplate with ImageEx. When I loaded list Images from my server. If all image ok(not 404) No exception. But If list Images have a url 404. I got that exception.

Ok understood. I'll check when I'll be back in January:)

:(. My app running on store with 1 million users. 200 crashs per day :(

Ok :) you won! Let me try to ping the team

More info
Crashed Thread

0 System.Exception : The component cannot be found. (Excep_FromHResult 0x88982F50)
1 at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
2 at SharedLibrary!+0x36fd1b
3 at SharedLibrary!+0x36fbe9
4 at SharedLibrary!+0x36fbb9
5 at NCT_UWP!+0xa6201f
6 --- End of stack trace from previous location where exception was thrown ---
7 at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
8 at SharedLibrary!+0x401cbf
9 at SharedLibrary!+0x3ce85f

@hoangwy Do you have some band-width to help fix this issue?

Yes. I will give you anything if you can for fix this issue

Sorry, I meant would you be able to submit a pull request for the issue?

@deltakosh @skendrot I don't mind looking into this over christmas

HttpClient returns COMException when it encounters 404 etc

I changed ImageEx to Image and everything work fine. No exception. But I want to cache my Image

@hoangwy I will fix along with timeout option

And with this exception. It make my app random crash. I have 100 000 active user per day but just 200 crashs.

I've started looking at ImageCache.. Hoping to fix perf issues along with handling COMExceptions thrown by HttpClient

Really cool! I'm using it in Collecto and I do not see perf issues so far

@deltakosh I see image loads taking forever with post 1.2 nugets and proj references. need to figure out why. I revert to 1.2 and all is good again.

@hoangwy I have debugged this and it is being handled. I have however tweaked it so it now throws FileNotFound exception

If I have alot of Image url with 404, I'm afraid of it's will be random crash if FileNotFound exception. did you tested if you run loop(for) with more than 1000 image 404 url ?
sorry my bad English.
Thanks for your support!

I can give that a go.. I really need to create a Flickr test code as I'm always using my work app ☺

@hoangwy I modified my code to generate invalid Url for every single image


[JsonProperty("url")]
public string OriginalUrl { get; set; }

[JsonIgnore]
public string Url
{
    get { return this.OriginalUrl.Replace("i.dailymail.co.uk/i/pix", "idailymailcoukipix"); }
}

[JsonIgnore]
public Uri Uri
{
    get { return new Uri(this.Url); }
}

This resulted in ImageEx displaying placeholders only. My app literally shows hundreds of images and I browsed various sections fully. Not a single crash.

The app also try to PreCache image using ImageCache independently and that did not generate any errors either

having said that I didn't check in release mode.. could be a dotnet native issue.. let me verify that as well

Hi,
You're hero!
Thanks so much!

Hi @hoangwy I cant really replicate the crash. Having said that the thing to remember that the Stack Trace once compiled to Dotnet Native is almost meaningless. Like I said I have noticed this is stack too.

I will keep an eye on it. For now if you want to validate the same, enable .NET Native on debug mode so you get the same feel and you might be able to catch whatever is causing that issue.
dotnetnative

image
I just debug my app

see if that exception is handled and that it can keep going.. check the stack to ensure that its being raised in the right place etc

what I meant was the having handled that in the modified codebase, I could go on an on without the app crashing (I was using release mode and not attached to the debugger)

If I click "continue" my app work fine. But some user got crash. I think it depend on that machine. If more exceptions. System will be killed my app

@hoangwy like I said stack from crash logs is pretty dismal once you use .NET Native. Throwing expcetions and catching them is how the whole thing works.. If some exception is causing crash its very like that it is being bubbled up elsewhere not here.

The only way to catch is have a reproducible scenario where you can repeat the actions.. HockeyApp and Crittercism allow breakcrumps etc that could help further

Search for HRESULT 0x88982F50 shows that it happens when BitmapLoader can't load the image. Now we check the stream for non zero value. If its zero, we throw FileNotFound exception and we are most likely to avoid the BitmapLoader exception. Wait for this to merge and then try the myget package

Merged! You can check now on prerelease repo

I checked on Nuget with Prerelease(checked) but I dont see new update

Try configuring mygwt in package manager https://dotnet.myget.org/gallery/uwpcommunitytoolkit

50 images
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

'NCT_UWP.exe' (Win32): Loaded 'C:\Windows\SysWOW64\UIAnimation.dll'. Skipped loading symbols. Module is native, and native debugging is currently disabled.
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

The thread 0x1e64 has exited with code 0 (0x0).
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

The thread 0xea8 has exited with code 0 (0x0).
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Additional information: IO_FileNotFound

Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in Microsoft.Toolkit.Uwp.UI.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll

It's safe?

are these being handled or is your application crashing ? if they are handled its safe..

It's work fine on my device. I will release my app soon and tracking this issue. If some user get crash. I will send you my feedback and trace log.
Thank for your support.
You're hero.

Was this page helpful?
0 / 5 - 0 ratings