Partager via


EAAccessoryManager.Notifications.ObserveDidConnect Méthode

Définition

Surcharges

ObserveDidConnect(EventHandler<EAAccessoryEventArgs>)

Notification fortement typée pour la DidConnectNotification constante.

ObserveDidConnect(NSObject, EventHandler<EAAccessoryEventArgs>)

Notification fortement typée pour la DidConnectNotification constante.

ObserveDidConnect(EventHandler<EAAccessoryEventArgs>)

Notification fortement typée pour la DidConnectNotification constante.

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

Paramètres

handler
EventHandler<EAAccessoryEventArgs>

Méthode à appeler lors de la publication de la notification.

Retours

Objet jeton qui peut être utilisé pour arrêter de recevoir des notifications en le supprimant ou en le transmettant à RemoveObservers(IEnumerable<NSObject>)

Remarques

L’exemple suivant montre comment les développeurs peuvent utiliser cette méthode dans leur code :

//
// 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 ();
}

S’applique à

ObserveDidConnect(NSObject, EventHandler<EAAccessoryEventArgs>)

Notification fortement typée pour 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

Paramètres

objectToObserve
NSObject

Objet à observer.

handler
EventHandler<EAAccessoryEventArgs>

Méthode à appeler lors de la publication de la notification.

Retours

Objet jeton qui peut être utilisé pour arrêter de recevoir des notifications en le supprimant ou en le transmettant à RemoveObservers(IEnumerable<NSObject>)

Remarques

Cette méthode peut être utilisée pour DidConnectNotification s’abonner aux notifications.

// 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 ();

S’applique à