In Page-A, I write a command to direct to Page-B using
App.Current.MainPage.Navigation.PushAsync(new B_Page())
The original behavior of the back button's action(on the left-top of the page) is to go back to the last page(Page-A). -->Action_A
And now, I want to rewrite the behavior to change page to a new page(called Page-C) by pressing the back button. -->Action_B
using Xamarin.Forms.Application.Current.MainPage = new NavigationPage(new C_Page());
But I want to keep both of these behaviors, because I will use each of them in different scenarios.
How to retain both behaviors and how to make me specify which action I want to use?
Let me use Action_A in scenario A and use Action_B in scenario B.
Thanks for the kind reply.

You can Manage Above Scenario with this Override Method
`
`