EAAccessoryManager.Notifications.ObserveDidConnect 方法

定义

重载

ObserveDidConnect(EventHandler<EAAccessoryEventArgs>)

常量的强类型通知 DidConnectNotification

ObserveDidConnect(NSObject, EventHandler<EAAccessoryEventArgs>)

常量的强类型通知 DidConnectNotification

ObserveDidConnect(EventHandler<EAAccessoryEventArgs>)

常量的强类型通知 DidConnectNotification

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

参数

handler
EventHandler<EAAccessoryEventArgs>

发布通知时调用的方法。

返回

令牌对象,可用于停止接收通知,方法是释放通知或将其传递给 RemoveObservers(IEnumerable<NSObject>)

注解

以下示例演示开发人员如何在代码中使用此方法:

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

适用于

ObserveDidConnect(NSObject, EventHandler<EAAccessoryEventArgs>)

常量的强类型通知 DidConnectNotification

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

参数

objectToObserve
NSObject

要观察的对象。

handler
EventHandler<EAAccessoryEventArgs>

发布通知时调用的方法。

返回

令牌对象,可用于停止接收通知,方法是释放通知或将其传递给 RemoveObservers(IEnumerable<NSObject>)

注解

此方法可用于订阅 DidConnectNotification 通知。

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

适用于