Table of Contents

Interface IEnteringAware<TIntent>

Namespace
Nalu
Assembly
Nalu.Maui.Navigation.dll

INavigationService will invoke OnEnteringAsync(TIntent) method when the page is being pushed onto the navigation stack and a TIntent navigation intent has been provided.

public interface IEnteringAware<in TIntent>

Type Parameters

TIntent

The type of supported navigation intent.

Remarks

It's not recommended to implement long operations in this method. The user perceives the navigation as slow if the page takes a long time to appear.

Methods

OnEnteringAsync(TIntent)

Invoked when the page is appearing with a TIntent navigation intent.

ValueTask OnEnteringAsync(TIntent intent)

Parameters

intent TIntent

The navigation intent.

Returns

ValueTask