UnhandledExceptionEventArgs.IsTerminating Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Indicates whether the common language runtime is terminating.
Assembly: mscorlib (in mscorlib.dll)
Important Note: |
|---|
Windows Phone-based applications cannot use the AppDomain.UnhandledException event. |
This property returns true for most unhandled exceptions. The reason is that most unhandled exceptions in threads, including thread pool threads, are allowed to proceed naturally, which normally results in termination of the application. For more information, including a list of cases in which the runtime does not terminate,
Important Note: