AppNotificationBuilder.SetGroup(String) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
アプリ通知のグループ識別子を設定します。
public:
virtual AppNotificationBuilder ^ SetGroup(Platform::String ^ group) = SetGroup;
AppNotificationBuilder SetGroup(winrt::hstring const& group);
public AppNotificationBuilder SetGroup(string group);
function setGroup(group)
Public Function SetGroup (group As String) As AppNotificationBuilder
パラメーター
- group
-
String
Platform::String
winrt::hstring
アプリ通知が属するグループを識別する文字列。
戻り値
追加のメソッド呼び出しをチェーンできるように、AppNotificationBuilder インスタンスを返します。
例
次の例は、アプリ通知のグループを設定する方法を示しています。
var notification = new AppNotificationBuilder()
.AddText("Notification text.")
.SetGroup("Notification group")
.BuildNotification();
AppNotificationManager.Default.Show(notification);
結果の XML ペイロード:
<toast>
<visual>
<binding template='ToastGeneric'>
<text>Notification text.</text>
</binding>
</visual>
</toast>
グループ別に Notification Center からすべての通知を削除する例。
await AppNotificationManager.Default.RemoveByGroupAsync("Notification group");
注釈
グループ識別子を使用すると、AppNotificationManager.RemoveByGroupAsync
アプリ通知の XML スキーマのリファレンス情報については、「アプリ通知コンテンツ スキーマ」を参照してください。