In my WP8 App, I am navigating from one screen to another based on some events. Say, after initiating the event(http call which would take me to a new screen, after successful response), I click on back key, the previous screen is shown to me, but since the earlier event was already fired, after the event completion a new screen is shown.
So, How should I handle this back key press.
I have tried searching it on net as well, but did not get much help. [Edit :] I want to stop my async calls on the current screen when its back key is pressed, I did some searching and found that using Cancellationtoken is one such approach. But, I would want to know how exactly to use it if I am using HttpWebRequest request, response classes