Freigeben über


SKCloudServiceController.Notifications.ObserveStorefrontCountryCodeDidChange Methode

Definition

Überlädt

ObserveStorefrontCountryCodeDidChange(EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die StorefrontCountryCodeDidChangeNotification Konstante.

ObserveStorefrontCountryCodeDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die StorefrontCountryCodeDidChangeNotification Konstante.

ObserveStorefrontCountryCodeDidChange(EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die StorefrontCountryCodeDidChangeNotification Konstante.

public static Foundation.NSObject ObserveStorefrontCountryCodeDidChange (EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveStorefrontCountryCodeDidChange : EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

Parameter

handler
EventHandler<NSNotificationEventArgs>

Methode, die aufgerufen wird, wenn die Benachrichtigung bereitgestellt wird.

Gibt zurück

Tokenobjekt, das verwendet werden kann, um den Empfang von Benachrichtigungen zu beenden, indem es entweder entfernt oder an übergeben wird RemoveObservers(IEnumerable<NSObject>)

Hinweise

Diese Methode kann verwendet werden, um Benachrichtigungen zu abonnieren 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 ();

Gilt für:

ObserveStorefrontCountryCodeDidChange(NSObject, EventHandler<NSNotificationEventArgs>)

Stark typisierte Benachrichtigung für die StorefrontCountryCodeDidChangeNotification Konstante.

public static Foundation.NSObject ObserveStorefrontCountryCodeDidChange (Foundation.NSObject objectToObserve, EventHandler<Foundation.NSNotificationEventArgs> handler);
static member ObserveStorefrontCountryCodeDidChange : Foundation.NSObject * EventHandler<Foundation.NSNotificationEventArgs> -> Foundation.NSObject

Parameter

objectToObserve
NSObject

Das zu beobachtende Objekt.

handler
EventHandler<NSNotificationEventArgs>

Methode, die aufgerufen wird, wenn die Benachrichtigung bereitgestellt wird.

Gibt zurück

Tokenobjekt, das verwendet werden kann, um den Empfang von Benachrichtigungen zu beenden, indem es entweder entfernt oder an übergeben wird RemoveObservers(IEnumerable<NSObject>)

Hinweise

Diese Methode kann verwendet werden, um Benachrichtigungen zu abonnieren 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 ();

Gilt für: