Share via


ToastNotification(XmlDocument) Constructor

Definition

Creates and initializes a new instance of the ToastNotification.

public:
 ToastNotification(XmlDocument ^ content);
 ToastNotification(XmlDocument const& content);
public ToastNotification(XmlDocument content);
function ToastNotification(content)
Public Sub New (content As XmlDocument)

Parameters

content
XmlDocument

The XML content that defines the toast notification.

Examples

The following example shows how to create and send a toast notification that includes text and images, including use of the ToastNotification constructor.

var notificationManager = ToastNotificationManager;
var template = ToastTemplateType.ToastImageAndText01;
var toastXml = notificationManager.GetTemplateContent(template);

var images = toastXml.GetElementsByTagName("image");
images[0].SetAttribute("src", "images/toastImageAndText.png");

var textNodes = toastXml.GetElementsByTagName("text");
// Fill text nodes
textNodes[0].AppendChild(toastXml.CreateTextNode("Text input 1"));

var toast = new ToastNotification(toastXml);
ToastNotificationManager.CreateToastNotifier().Show(toast);

Applies to

See also