Invoked when application execution is being suspended. Application state is saved without knowing whether the application will be terminated or resumed with the contents of memory still intact. The source of the suspend request. Details about the suspend request.
(object sender, SuspendingEventArgs e)
| 104 | /// <param name="sender">The source of the suspend request.</param> |
| 105 | /// <param name="e">Details about the suspend request.</param> |
| 106 | private void OnSuspending(object sender, SuspendingEventArgs e) |
| 107 | { |
| 108 | var deferral = e.SuspendingOperation.GetDeferral(); |
| 109 | //TODO: Save application state and stop any background activity |
| 110 | deferral.Complete(); |
| 111 | } |
| 112 | |
| 113 | public void UpdateAppTitle(string webViewVersion) |
| 114 | { |
nothing calls this directly
no outgoing calls
no test coverage detected