SnapDotNet.Apps.Notifications.TileContent.TileNotificationBase.CreateNotification C# (CSharp) 메소드

CreateNotification() 공개 메소드

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