BadgeUpdateManager.CreateBadgeUpdaterForApplication() | createBadgeUpdaterForApplication() method
Creates and initializes a new instance of the BadgeUpdater, which lets you change the appearance or content of the badge on the calling app's tile.
Syntax
var badgeUpdater = Windows.UI.Notifications.BadgeUpdateManager.createBadgeUpdaterForApplication();
Parameters
This method has no parameters.
Return value
Type: BadgeUpdater
The object you will use to send changes to the app tile's badge.
Examples
The following example shows CreateBadgeUpdaterForApplication used to send a numeric badge update to the calling app's tile.
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); }
Requirements
|
Minimum supported client | Windows 8 |
|---|---|
|
Minimum supported server | Windows Server 2012 |
|
Namespace |
|
|
Metadata |
|
See also
- BadgeUpdateManager
- CreateBadgeUpdaterForApplication(String)
- App tiles and badges sample
- Guidelines and checklist for tiles and badges
- How to clear a badge
- How to send a glyph or numeric badge in a local notification
- How to set up periodic notifications for badges
- How to update a badge through push notifications
- Badge XML schema
- Badge overview
Build date: 12/4/2012
