Compartir a través de


EAAccessoryManager.Notifications.ObserveDidConnect Método

Definición

Sobrecargas

ObserveDidConnect(EventHandler<EAAccessoryEventArgs>)

Notificación fuertemente tipada para la DidConnectNotification constante.

ObserveDidConnect(NSObject, EventHandler<EAAccessoryEventArgs>)

Notificación fuertemente tipada para la DidConnectNotification constante.

ObserveDidConnect(EventHandler<EAAccessoryEventArgs>)

Notificación fuertemente tipada para la DidConnectNotification constante.

public static Foundation.NSObject ObserveDidConnect (EventHandler<ExternalAccessory.EAAccessoryEventArgs> handler);
static member ObserveDidConnect : 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.ObserveDidConnect ((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.ObserveDidConnect (Callback);
}

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

Se aplica a

ObserveDidConnect(NSObject, EventHandler<EAAccessoryEventArgs>)

Notificación fuertemente tipada para la DidConnectNotification constante.

public static Foundation.NSObject ObserveDidConnect (Foundation.NSObject objectToObserve, EventHandler<ExternalAccessory.EAAccessoryEventArgs> handler);
static member ObserveDidConnect : 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 DidConnectNotification a las notificaciones.

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

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

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

Se aplica a