Table of Contents

Class NavigationLifecycleInfo

Namespace
Nalu
Assembly
Nalu.Maui.Navigation.dll

Holds information about a navigation lifecycle event.

public class NavigationLifecycleInfo
Inheritance
NavigationLifecycleInfo
Inherited Members

Constructors

NavigationLifecycleInfo(INavigationInfo, string, string, string)

Initializes a new instance of the NavigationLifecycleInfo class.

public NavigationLifecycleInfo(INavigationInfo navigation, string requestedNavigation, string targetState, string currentState)

Parameters

navigation INavigationInfo

The requested navigation object.

requestedNavigation string

The requested navigation.

targetState string

The target navigation state.

currentState string

The current navigation state.

Properties

CurrentState

Gets the current state of the navigation.

public string CurrentState { get; }

Property Value

string

Navigation

Gets the requested navigation object.

public INavigationInfo Navigation { get; }

Property Value

INavigationInfo

RequestedNavigation

Gets the requested navigation.

public string RequestedNavigation { get; }

Property Value

string

TargetState

Gets the target state of the navigation.

public string TargetState { get; }

Property Value

string