예제 #1
0
 public void Backgrounding(IPersistedState state)
 {
 }
예제 #2
0
 public BackgroundingEventArgs(IPersistedState state)
 {
     State = state;
 }
예제 #3
0
 public ActivationState(IMauiContext context, IPersistedState state)
 {
     Context = context ?? throw new ArgumentNullException(nameof(context));
     State   = state ?? throw new ArgumentNullException(nameof(state));
 }