AppNotificationBuilder.BuildNotification Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Retourne un 'objet AppNotification représentant la charge utile XML d’une notification d’application.
public:
virtual AppNotification ^ BuildNotification() = BuildNotification;
AppNotification BuildNotification();
public AppNotification BuildNotification();
function buildNotification()
Public Function BuildNotification () As AppNotification
Retours
Objet AppNotification.
Exemples
L’exemple suivant illustre la création d’un AppNotification
var notification = new AppNotificationBuilder()
.AddText("Notification text.")
.BuildNotification();
AppNotificationManager.Default.Show(notification);
Remarques
Utilisez les méthodes de l'AppNotificationBuilder pour assembler les éléments que vous souhaitez inclure dans une notification d’application. Appelez buildNotificaion pour obtenir un objet AppNotification que vous pouvez transmettre à Microsoft.Windows.AppNotifications.AppNotificationManager.Show.
Pour obtenir des conseils sur l’utilisation des API AppNotificationBuilder
Pour plus d’informations sur le schéma XML pour les notifications d’application, consultez schéma de contenu de notification d’application.