I have a toast notification which when touched should navigate to a specific page in the app and also send an object as parameter to be used in the navigated page.
I am unable to find a suitable method. i have tried the activated event but it is something that is not solving my problem
While sending push notification, you toast xml should have launch parameters.
When the user taps or clicks the notification, the associated app is automatically launched, and so its OnLaunched method is invoked. If we want to determine whether the app is activated by a toast notification click, we can use the Arguments property of the LaunchActivatedEventArgs object that is passed to this method.
Please have a look on this blog: https://marcominerva.wordpress.com/2013/03/25/how-to-pass-arguments-to-an-app-activated-by-a-toast-notification/