Share via


UIApplication.Notifications.ObserveWillResignActive Method

Definition

Overloads

ObserveWillResignActive(EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the WillResignActiveNotification constant.

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

Parameters

handler
EventHandler<NSNotificationEventArgs>

The handler that responds to the notification when it occurs.

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 to WillResignActiveNotification notifications.

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

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

Applies to

ObserveWillResignActive(NSObject, EventHandler<NSNotificationEventArgs>)

Strongly typed notification for the WillResignActiveNotification constant.

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

Parameters

objectToObserve
NSObject

The specific object to observe.

handler
EventHandler<NSNotificationEventArgs>

The handler that responds to the notification when it occurs.

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 to WillResignActiveNotification notifications.

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

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

Applies to