SnapDotNet.Apps.Notifications.BadgeContent.BadgeNumericNotificationContent.CreateNotification C# (CSharp) Method

CreateNotification() public method

Creates a WinRT BadgeNotification object based on the content.
public CreateNotification ( ) : BadgeNotification
return Windows.UI.Notifications.BadgeNotification
                public BadgeNotification CreateNotification()
                {
                    XmlDocument xmlDoc = new XmlDocument();
                    xmlDoc.LoadXml(GetContent());
                    return new BadgeNotification(xmlDoc);
                }