UIApplication.Notifications.ObserveWillTerminate Method

Definition

Overloads

ObserveWillTerminate(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the WillTerminateNotification constant.

ObserveWillTerminate(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the WillTerminateNotification constant.

ObserveWillTerminate(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the WillTerminateNotification constant.

public static Foundation.NSObject ObserveWillTerminate (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveWillTerminate : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

Parameters

handler
EventHandler<NSNotificationEventArgs>

Method to invoke when the notification is posted.

Returns

Token object that can be used to stop receiving notifications by either disposing it or passing it to RemoveObservers(IEnumerable<NSObject>)

Remarks

The following example shows how you can use this method in your code

//
// Lambda style
//

// listening
notification = UIApplication.Notifications.ObserveWillTerminate ((sender, args) => {
    /* Access strongly typed args */
    Console.WriteLine ("Notification: {0}", args.Notification);
});

// To stop listening:
notification.Dispose ();

//
//Method style
//
NSObject notification;
void Callback (object sender, Foundation.NSNotificationEventArgs args)
{
    // Access strongly typed args
    Console.WriteLine ("Notification: {0}", args.Notification);
}

void Setup ()
{
    notification = UIApplication.Notifications.ObserveWillTerminate (Callback);
}

void Teardown ()
{
    notification.Dispose ();
}

Applies to

ObserveWillTerminate(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the WillTerminateNotification constant.

public static Foundation.NSObject ObserveWillTerminate (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveWillTerminate : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

Parameters

objectToObserve
NSObject

The object to observe.

handler
EventHandler<NSNotificationEventArgs>

Method to invoke when the notification is posted.

Returns

Token object that can be used to stop receiving notifications by either disposing it or passing it to RemoveObservers(IEnumerable<NSObject>)

Remarks

This method can be used to subscribe for WillTerminateNotification notifications.

// Listen to all notifications posted for any object
var token = UIApplication.Notifications.ObserveWillTerminate ((notification) => {
	Console.WriteLine ("Observed WillTerminateNotification!");
};

// Listen to all notifications posted for a single object
var token = UIApplication.Notifications.ObserveWillTerminate (objectToObserve, (notification) => {
	Console.WriteLine ($"Observed WillTerminateNotification for {nameof (objectToObserve)}!");
};

// Stop listening for notifications
token.Dispose ();

Applies to