NotificationsExtensions.BadgeContent.BadgeNumericNotificationContent.GetXml C# (CSharp) Méthode

GetXml() public méthode

Retrieves the notification Xml content as a WinRT Xml document.
public GetXml ( ) : XmlDocument
Résultat XmlDocument
        public XmlDocument GetXml()
        {
            XmlDocument xml = new XmlDocument();
            xml.LoadXml(GetContent());
            return xml;
        }