I am using SMF player for online video streaming in my project. Randomly application crashes. (Sometime Application runs for 60 hr, sometimes apln crashes in 2 hr) I have added the unhandled exception handler to main class.
public partial class App : Application
{
public App()
{
this.Startup += this.Application_Startup;
this.Exit += this.Application_Exit;
this.UnhandledException += this.Application_UnhandledException;
InitializeComponent();
}
But during exception, I am only getting the following information, No stacktrace info.
UnhandledException of type System.Exception, Error HRESULT E_FAIL has been returned from a call to a COM component.
Please help to resolve this issue.