CoreApplication.Suspending Event

Definition

Occurs when the app is suspending.

// Register
static event_token Suspending(EventHandler<SuspendingEventArgs> const& handler) const;

// Revoke with event_token
static void Suspending(event_token const* cookie) const;

// Revoke with event_revoker
static CoreApplication::Suspending_revoker Suspending(auto_revoke_t, EventHandler<SuspendingEventArgs> const& handler) const;
public static event System.EventHandler<SuspendingEventArgs> Suspending;
function onSuspending(eventArgs) { /* Your code */ }
Windows.ApplicationModel.Core.CoreApplication.addEventListener("suspending", onSuspending);
Windows.ApplicationModel.Core.CoreApplication.removeEventListener("suspending", onSuspending);
- or -
Windows.ApplicationModel.Core.CoreApplication.onsuspending = onSuspending;
Public Shared Custom Event Suspending As EventHandler(Of SuspendingEventArgs) 

Event Type

Remarks

Windows Phone 8

This API is supported in native apps only.

Applies to