AppNotificationBuilder.BuildNotification 方法

定义

返回表示应用通知的 XML 有效负载的 AppNotification 对象。

public:
 virtual AppNotification ^ BuildNotification() = BuildNotification;
AppNotification BuildNotification();
public AppNotification BuildNotification();
function buildNotification()
Public Function BuildNotification () As AppNotification

返回

AppNotification 对象。

示例

以下示例演示如何从 AppNotificationBuilder实例生成 AppNotification

var notification = new AppNotificationBuilder()
    .AddText("Notification text.")
    .BuildNotification();

AppNotificationManager.Default.Show(notification);

注解

使用 AppNotificationBuilder 的方法来组装要在应用通知中包含的元素。 调用 buildNotificaion 以获取 AppNotification 对象,该对象可以传递到 Microsoft.Windows.AppNotifications.AppNotificationManager.Show

有关使用 AppNotificationBuilder API 创建应用通知的 UI 的指导,请参阅 应用通知内容

有关应用通知的 XML 架构的参考信息,请参阅 应用通知内容架构

适用于