SKCloudServiceController.StorefrontIdentifierDidChangeNotification Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Константы уведомлений для StorefrontIdentifierDidChange
[Foundation.Advice("Use SKCloudServiceController.Notifications.ObserveStorefrontIdentifierDidChange helper method instead.")]
[Foundation.Field("SKStorefrontIdentifierDidChangeNotification", "StoreKit")]
public static Foundation.NSString StorefrontIdentifierDidChangeNotification { get; }
member this.StorefrontIdentifierDidChangeNotification : Foundation.NSString
Значение свойства
Константа NSString должна использоваться в качестве токена для NSNotificationCenter.
- Атрибуты
Комментарии
Эту константу можно использовать с для NSNotificationCenter регистрации прослушивателя для этого уведомления. Это NSString вместо строки, так как эти значения можно использовать в качестве маркеров в некоторых собственных библиотеках, а не только для их фактического содержимого строк. Параметр notification для обратного вызова содержит дополнительные сведения, относящиеся к типу уведомления.
// Lambda style
NSNotificationCenter.DefaultCenter.AddObserver (
SKCloudServiceController.StorefrontIdentifierDidChangeNotification, (notification) => {Console.WriteLine ("Received the notification SKCloudServiceController", notification); }
// Method style
void Callback (NSNotification notification)
{
Console.WriteLine ("Received a notification SKCloudServiceController", notification);
}
void Setup ()
{
NSNotificationCenter.DefaultCenter.AddObserver (SKCloudServiceController.StorefrontIdentifierDidChangeNotification, Callback);
}