BadgeUpdater.Update(BadgeNotification) 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.
Applique une modification au glyphe ou au numéro du badge.
public:
virtual void Update(BadgeNotification ^ notification) = Update;
void Update(BadgeNotification const& notification);
public void Update(BadgeNotification notification);
function update(notification)
Public Sub Update (notification As BadgeNotification)
Paramètres
- notification
- BadgeNotification
Objet qui fournit la nouvelle définition XML pour le badge.
Exemples
L’exemple suivant montre l’utilisation de Update pour envoyer une mise à jour de badge numérique à la vignette de l’application appelante.
function sendBadgeNotification() {
var Notifications = Windows.UI.Notifications;
var badgeXml;
var badgeAttributes;
// Get an XML DOM version of a specific template by using getTemplateContent.
badgeXml = Notifications.BadgeUpdateManager.getTemplateContent(Notifications.BadgeTemplateType.badgeNumber);
badgeAttributes = badgeXml.getElementsByTagName("badge");
badgeAttributes[0].setAttribute("value", "7");
// Create a badge notification from the XML content.
var badgeNotification = new Notifications.BadgeNotification(badgeXml);
// Send the badge notification to the app's tile.
Notifications.BadgeUpdateManager.createBadgeUpdaterForApplication().update(badgeNotification);
}
S’applique à
Voir aussi
- Exemple de vignettes et de badges d’application
- Recommandations et liste de vérification sur les vignettes et les badges
- Comment effacer un badge
- Comment envoyer un glyphe ou un badge numérique dans une notification locale
- Comment configurer des notifications périodiques pour les badges
- Comment mettre à jour un badge via des notifications Push
- Schéma XML de badge
- Vue d’ensemble du badge