Windows Phone 7アプリケーションで、アプリケーションが終了するときにWCF呼び出しを行いたいとします。私はそれが空だが、このスタックトレースがある例外メッセージを検査する場合Windows Phoneアプリケーションが終了しているときに非同期呼び出しを行う方法
private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
{
if (Debugger.IsAttached)
{
// An unhandled exception has occurred; break into the debugger
Debugger.Break();
}
}
:私は電話をかけるとき はしかし、アプリケーションがでアップを終了します。
at System.ServiceModel.AsyncResult.Complete(Boolean completedSynchronously)
at System.ServiceModel.AsyncResult.Complete(Boolean completedSynchronously, Exception exception)
at System.ServiceModel.Channels.HttpOutput.WebRequestHttpOutput.GetOutputStreamAsyncResult.OnGetRequestStream(IAsyncResult result)
at System.Net.Browser.ClientHttpWebRequest.<>c__DisplayClass6.<InvokeGetRequestStreamCallback>b__4(Object state2)
at System.Threading.ThreadPool.WorkItem.doWork(Object o)
at System.Threading.Timer.ring()
私の呼び出しの周りにtry/catchブロックを追加しようとしましたが、それでも同じ方法で終了します。
どのようにして正常に電話をかけることができますか?
「閉じる」と言うときに使用するので、これはできないことを願っています。つまり、「近いうちに」という意味です。 –