Compartir a través de


EAAccessoryManager.Notifications.ObserveDidDisconnect Método

Definición

Sobrecargas

ObserveDidDisconnect(EventHandler<EAAccessoryEventArgs>)

Notificación fuertemente tipada para la DidDisconnectNotification constante.

ObserveDidDisconnect(NSObject, EventHandler<EAAccessoryEventArgs>)

Notificación fuertemente tipada para la DidDisconnectNotification constante.

ObserveDidDisconnect(EventHandler<EAAccessoryEventArgs>)

Notificación fuertemente tipada para la DidDisconnectNotification constante.

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

Parámetros

handler
EventHandler<EAAccessoryEventArgs>

Método para invocar cuando se publica la notificación.

Devoluciones

Objeto de token que se puede usar para dejar de recibir notificaciones al eliminarlo o pasarlo a RemoveObservers(IEnumerable<NSObject>)

Comentarios

En el ejemplo siguiente se muestra cómo los desarrolladores pueden usar este método en su código:

//
// Lambda style
//

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

    Console.WriteLine ("Accessory", args.Accessory);
    Console.WriteLine ("Selected", args.Selected);
});

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

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

    Console.WriteLine ("Accessory", args.Accessory);
    Console.WriteLine ("Selected", args.Selected);
}

void Setup ()
{
    notification = EAAccessoryManager.Notifications.ObserveDidDisconnect (Callback);
}

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

Se aplica a

ObserveDidDisconnect(NSObject, EventHandler<EAAccessoryEventArgs>)

Notificación fuertemente tipada para la DidDisconnectNotification constante.

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

Parámetros

objectToObserve
NSObject

Objeto que se va a observar.

handler
EventHandler<EAAccessoryEventArgs>

Método para invocar cuando se publica la notificación.

Devoluciones

Objeto de token que se puede usar para dejar de recibir notificaciones al eliminarlo o pasarlo a RemoveObservers(IEnumerable<NSObject>)

Comentarios

Este método se puede usar para suscribirse DidDisconnectNotification a las notificaciones.

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

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

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

Se aplica a