次の方法で共有


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 呼び出して、Microsoft.Windows.AppNotifications.AppNotificationManager.Showに渡すことができる AppNotification オブジェクト 取得します。

AppNotificationBuilder API を使用してアプリ通知用の UI を作成する方法については、「アプリ通知コンテンツ参照してください。

アプリ通知の XML スキーマのリファレンス情報については、「アプリ通知コンテンツ スキーマ」を参照してください。

適用対象