Поделиться через


GCController.Notifications.ObserveDidDisconnect Метод

Определение

Перегрузки

ObserveDidDisconnect(EventHandler<NSNotificationEventArgs>)

Строго типизированное уведомление для константы DidDisconnectNotification .

ObserveDidDisconnect(NSObject, EventHandler<NSNotificationEventArgs>)

Строго типизированное уведомление для константы DidDisconnectNotification .

ObserveDidDisconnect(EventHandler<NSNotificationEventArgs>)

Строго типизированное уведомление для константы DidDisconnectNotification .

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

Параметры

handler
EventHandler<NSNotificationEventArgs>

Метод для вызова при публикации уведомления.

Возвращаемое значение

Объект токена, который можно использовать для прекращения получения уведомлений путем его удаления или передачи в RemoveObservers(IEnumerable<NSObject>)

Комментарии

В следующем примере показано, как использовать этот метод в коде.

//
// Lambda style
//

// listening
notification = GCController.Notifications.ObserveDidDisconnect ((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 = GCController.Notifications.ObserveDidDisconnect (Callback);
}

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

Применяется к

ObserveDidDisconnect(NSObject, EventHandler<NSNotificationEventArgs>)

Строго типизированное уведомление для константы DidDisconnectNotification .

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

Параметры

objectToObserve
NSObject

Объект для наблюдения.

handler
EventHandler<NSNotificationEventArgs>

Метод для вызова при публикации уведомления.

Возвращаемое значение

Объект токена, который можно использовать для прекращения получения уведомлений путем его удаления или передачи в RemoveObservers(IEnumerable<NSObject>)

Комментарии

Этот метод можно использовать для подписки на DidDisconnectNotification уведомления.

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

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

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

Применяется к