Compartilhar via


EAAccessoryManager.Notifications.ObserveDidDisconnect Método

Definição

Sobrecargas

ObserveDidDisconnect(EventHandler<EAAccessoryEventArgs>)

Notificação fortemente tipada para a DidDisconnectNotification constante.

ObserveDidDisconnect(NSObject, EventHandler<EAAccessoryEventArgs>)

Notificação fortemente tipada para a DidDisconnectNotification constante.

ObserveDidDisconnect(EventHandler<EAAccessoryEventArgs>)

Notificação fortemente tipada para a 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 a ser invocado quando a notificação é postada.

Retornos

Objeto de token que pode ser usado para parar de receber notificações descartando-o ou passando-o para RemoveObservers(IEnumerable<NSObject>)

Comentários

O exemplo a seguir mostra como os desenvolvedores podem usar esse método em seu 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 ();
}

Aplica-se a

ObserveDidDisconnect(NSObject, EventHandler<EAAccessoryEventArgs>)

Notificação fortemente tipada para a 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

O objeto a ser observado.

handler
EventHandler<EAAccessoryEventArgs>

Método a ser invocado quando a notificação é postada.

Retornos

Objeto de token que pode ser usado para parar de receber notificações descartando-o ou passando-o para RemoveObservers(IEnumerable<NSObject>)

Comentários

Esse método pode ser usado para assinar DidDisconnectNotification notificações.

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

Aplica-se a