CustomContentState.Replay(NavigationService, NavigationMode) Method

Definition

Called to reapply state to a piece of content when navigation occurs.

public:
 abstract void Replay(System::Windows::Navigation::NavigationService ^ navigationService, System::Windows::Navigation::NavigationMode mode);
public abstract void Replay (System.Windows.Navigation.NavigationService navigationService, System.Windows.Navigation.NavigationMode mode);
abstract member Replay : System.Windows.Navigation.NavigationService * System.Windows.Navigation.NavigationMode -> unit
Public MustOverride Sub Replay (navigationService As NavigationService, mode As NavigationMode)

Parameters

navigationService
NavigationService

The NavigationService owned by the navigator responsible for the content to which this CustomContentState is being applied.

mode
NavigationMode

A NavigationMode that specifies how the content to which the CustomContentState is being applied was navigated to.

Remarks

Replay is called when an item in navigation history that has an associated CustomContentState object is navigated to.

When deriving from the abstract CustomContentState class, Replay must be overridden, although the override implementation need only call the base Replay method.

Applies to

See also