AppNotificationBuilder.BuildNotification メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
アプリ通知の 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
アプリ通知の XML スキーマのリファレンス情報については、「アプリ通知コンテンツ スキーマ」を参照してください。