BadgeNotification(XmlDocument) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates and initializes a new instance of the BadgeNotification.
public:
BadgeNotification(XmlDocument ^ content);
BadgeNotification(XmlDocument const& content);
public BadgeNotification(XmlDocument content);
function BadgeNotification(content)
Public Sub New (content As XmlDocument)
Parameters
- content
- XmlDocument
The XML content that defines the badge update.
Examples
The following example code uses the BadgeNotification method to create a numeric badge notification.
var Notifications = Windows.UI.Notifications;
var badgeXml = Notifications.BadgeUpdateManager.getTemplateContent(Notifications.BadgeTemplateType.badgeNumber);
var badgeAttributes = badgeXml.getElementsByTagName("badge");
badgeAttributes[0].setAttribute("value", "26");
// Create a badge notification from XML
var badgeNotification = new Notifications.badgeNotification(badgeXml);
Remarks
The value attribute can be a number from 1-99 or a status glyph. See the Badge overview for a complete list of available images.