Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using App.Current.Terminate() method in Windows phone 8

As windows phone 8 provides us with this method for programmatically terminate an app, will there be any issue while app submission if we use this in app for terminating a page while there is no backentry in the navigation history?

like image 657
Sree Avatar asked Jan 22 '13 14:01

Sree


People also ask

How do I terminate a Windows Phone app programmatically?

This article explains how to terminate a Windows Phone app programmatically. The Windows Phone app lifecyle is such that apps are typically terminated by the user pressing the back button, or pushed into a dormant state (and perhaps later tombstoned) if the user activates another app from the start screen.

How do I create a Windows Phone databound app?

Right-click the BookStore solution in the in the solution explorer, then click Add, and then New Project. When the New Project dialog box is displayed, expand Installed, then Visual C#, and then Windows Phone. Highlight Windows Phone Databound App, enter BookCatalog for the name, and then click OK.

How to test the connectivity between web API and Windows Phone 8?

If you are going to test the connectivity between Web API and Windows Phone 8 projects on your local system, you will need to follow the instructions in the Connecting the Windows Phone 8 Emulator to Web API Applications on a Local Computer article to set up your testing environment.

How do I create a web API for a Windows Phone application?

The first step of this end-to-end tutorial is to create a Web API project that supports all of the CRUD operations; note that you will add the Windows Phone application project to this solution in Step 2 of this tutorial. Open Visual Studio 2013. Click File, then New, and then Project.


1 Answers

There won't be any issue in certification when using this call, but make sure you have saved all data in your app when calling this, because this call effectively kills your app immediately - ApplicationClosing even handler won't be raised after it!

like image 148
Martin Suchan Avatar answered Sep 30 '22 23:09

Martin Suchan