1 implementation of IPersistedState
Microsoft.Maui (1)
PersistedState.cs (1)
5
public class PersistedState : Dictionary<string, string?>,
IPersistedState
9 references to IPersistedState
Microsoft.Maui (5)
ActivationState.cs (2)
39
public ActivationState(IMauiContext context,
IPersistedState
state)
47
public
IPersistedState
State { get; }
Core\IWindow.cs (1)
119
void Backgrounding(
IPersistedState
state);
Handlers\OpenWindowRequest.cs (1)
6
public record OpenWindowRequest(
IPersistedState
? State = null);
IActivationState.cs (1)
7
IPersistedState
State { get; }
Microsoft.Maui.Controls (4)
BackgroundingEventArgs.cs (2)
8
public BackgroundingEventArgs(
IPersistedState
state)
13
public
IPersistedState
State { get; set; }
Window\Window.cs (2)
269
protected virtual void OnBackgrounding(
IPersistedState
state) { }
550
void IWindow.Backgrounding(
IPersistedState
state)