Share via


NavigationPage.PopAsync Method

Definition

Overloads

Name Description
PopAsync(Boolean)

Asynchronously removes the top page from the navigation stack, with optional animation.

PopAsync()

Asynchronously removes the top page from the navigation stack.

PopAsync(Boolean)

Source:
NavigationPage.cs
Source:
NavigationPage.cs
Source:
NavigationPage.cs
Source:
NavigationPage.cs

Asynchronously removes the top page from the navigation stack, with optional animation.

public:
 System::Threading::Tasks::Task<Microsoft::Maui::Controls::Page ^> ^ PopAsync(bool animated);
public System.Threading.Tasks.Task<Microsoft.Maui.Controls.Page> PopAsync(bool animated);
member this.PopAsync : bool -> System.Threading.Tasks.Task<Microsoft.Maui.Controls.Page>
Public Function PopAsync (animated As Boolean) As Task(Of Page)

Parameters

animated
Boolean

Whether to animate the transition.

Returns

A task that represents the asynchronous pop operation and contains the popped page.

Applies to

PopAsync()

Source:
NavigationPage.cs
Source:
NavigationPage.cs
Source:
NavigationPage.cs
Source:
NavigationPage.cs

Asynchronously removes the top page from the navigation stack.

public:
 System::Threading::Tasks::Task<Microsoft::Maui::Controls::Page ^> ^ PopAsync();
public System.Threading.Tasks.Task<Microsoft.Maui.Controls.Page> PopAsync();
member this.PopAsync : unit -> System.Threading.Tasks.Task<Microsoft.Maui.Controls.Page>
Public Function PopAsync () As Task(Of Page)

Returns

A task that represents the asynchronous pop operation and contains the popped page.

Applies to