SnapDotNet.Apps.Notifications.BadgeContent.BadgeGlyphNotificationContent.GetXml C# (CSharp) Method

GetXml() public method

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