SKCloudServiceController.Notifications.ObserveStorefrontCountryCodeDidChange Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Перегрузки
ObserveStorefrontCountryCodeDidChange(EventHandler<NSNotificationEventArgs>) |
Строго типизированное уведомление для константы StorefrontCountryCodeDidChangeNotification . |
ObserveStorefrontCountryCodeDidChange(NSObject, EventHandler<NSNotificationEventArgs>) |
Строго типизированное уведомление для константы StorefrontCountryCodeDidChangeNotification . |
ObserveStorefrontCountryCodeDidChange(EventHandler<NSNotificationEventArgs>)
Строго типизированное уведомление для константы StorefrontCountryCodeDidChangeNotification .
public static Foundation.NSObject ObserveStorefrontCountryCodeDidChange (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveStorefrontCountryCodeDidChange : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Параметры
- handler
- EventHandler<NSNotificationEventArgs>
Метод для вызова при публикации уведомления.
Возвращаемое значение
Объект токена, который можно использовать для прекращения получения уведомлений путем его удаления или передачи в RemoveObservers(IEnumerable<NSObject>)
Комментарии
Этот метод можно использовать для подписки на StorefrontCountryCodeDidChangeNotification уведомления.
// Listen to all notifications posted for any object
var token = SKCloudServiceController.Notifications.ObserveStorefrontCountryCodeDidChange ((notification) => {
Console.WriteLine ("Observed StorefrontCountryCodeDidChangeNotification!");
};
// Listen to all notifications posted for a single object
var token = SKCloudServiceController.Notifications.ObserveStorefrontCountryCodeDidChange (objectToObserve, (notification) => {
Console.WriteLine ($"Observed StorefrontCountryCodeDidChangeNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();
Применяется к
ObserveStorefrontCountryCodeDidChange(NSObject, EventHandler<NSNotificationEventArgs>)
Строго типизированное уведомление для константы StorefrontCountryCodeDidChangeNotification .
public static Foundation.NSObject ObserveStorefrontCountryCodeDidChange (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveStorefrontCountryCodeDidChange : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject
Параметры
- objectToObserve
- NSObject
Объект для наблюдения.
- handler
- EventHandler<NSNotificationEventArgs>
Метод для вызова при публикации уведомления.
Возвращаемое значение
Объект токена, который можно использовать для прекращения получения уведомлений путем его удаления или передачи в RemoveObservers(IEnumerable<NSObject>)
Комментарии
Этот метод можно использовать для подписки на StorefrontCountryCodeDidChangeNotification уведомления.
// Listen to all notifications posted for any object
var token = SKCloudServiceController.Notifications.ObserveStorefrontCountryCodeDidChange ((notification) => {
Console.WriteLine ("Observed StorefrontCountryCodeDidChangeNotification!");
};
// Listen to all notifications posted for a single object
var token = SKCloudServiceController.Notifications.ObserveStorefrontCountryCodeDidChange (objectToObserve, (notification) => {
Console.WriteLine ($"Observed StorefrontCountryCodeDidChangeNotification for {nameof (objectToObserve)}!");
};
// Stop listening for notifications
token.Dispose ();