SnapDotNet.Apps.Notifications.TileContent.TileNotificationBase.CreateNotification C# (CSharp) Method

CreateNotification() public method

public CreateNotification ( ) : TileNotification
return Windows.UI.Notifications.TileNotification
                public TileNotification CreateNotification()
                {
                    XmlDocument xmlDoc = new XmlDocument();
                    xmlDoc.LoadXml(GetContent());
                    return new TileNotification(xmlDoc);
                }
Notifications.TileContent.TileNotificationBase