Created
September 1, 2021 22:11
-
-
Save MartinZikmund/d4b76b4c2ca494e1cc80e096c32efd1d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static partial class BadgeUpdateManager | |
{ | |
public static BadgeUpdater CreateBadgeUpdaterForApplication() => new BadgeUpdater(); | |
public static XmlDocument GetTemplateContent(BadgeTemplateType type) | |
{ | |
// Although UWP has two "template types", both return the same XML. | |
var xml = new XmlDocument(); | |
xml.LoadXml("<badge value=\"\" />"); | |
return xml; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment