I am using the facebook C# SDK, v5.0.3. I develop a silverlight application. If my code asks an invalid or unauthorized graph request, for example : http://graph.facebook.com/me/Idonotexists
Facebook returns a "not found" message. Upon that "not found" message, the Facebook C# SDK, in the method FacebookClient:ResponseCallback() throws an exception.
The exception is not catched anywhere and makes the silverlight app to die (IE shows a white empty page).
Is there anyway I can catch the exception? try and catch my request fb.GetAsync(pathBox.Text, parameters, get_data_callback) doesn't work, as it's thrown just before the callback.
The following addition is a functional workaround the issue but it's far from a best practice:
private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
{
e.Handled = true; // do this to prevent white page
}