AppNotificationButton.Arguments プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
AppNotificationButtonに関連付けられている引数を取得または設定します。
public:
property IMap<Platform::String ^, Platform::String ^> ^ Arguments { IMap<Platform::String ^, Platform::String ^> ^ get(); void set(IMap<Platform::String ^, Platform::String ^> ^ value); };
IMap<winrt::hstring, winrt::hstring const&> Arguments();
void Arguments(IMap<winrt::hstring, winrt::hstring const&> value);
public IDictionary<string,string> Arguments { get; set; }
var iMap = appNotificationButton.arguments;
appNotificationButton.arguments = iMap;
Public Property Arguments As IDictionary(Of String, String)
プロパティ値
アプリ通知ボタンの引数を表すキーと値のペアのディクショナリ。
例
次の例は、このプロパティを使用して、アプリ通知ボタンに引数を追加する方法を示しています。
var args = new Dictionary<string, string>() { { "action", "reply" }, { "arg2", "value" } };
var button = new AppNotificationButton("Reply");
button.Arguments = args;
var notification = new AppNotificationBuilder()
.AddText("Notification text.")
.AddButton(button)
.BuildNotification();
AppNotificationManager.Default.Show(notification);
結果の XML ペイロード:
<toast>
<visual>
<binding template='ToastGeneric'>
<text>Notification text.</text>
</binding>
</visual>
<actions>
<action content='Reply' arguments='action=reply;arg2=value'/><
/actions>
</toast>
注釈
このメソッドで追加されたアプリ通知ボタンの引数は、ユーザーがボタンをクリックするとアクティブ化されたアプリケーションに渡されます。 各ボタンに複数の引数を追加できます。 このメソッドで追加された引数を取得したり、1 回の呼び出しで複数の引数を追加したりするには、AppNotificationActivatedEventArgs.Arguments プロパティにアクセスします。
AppNotificationButton.AddArgumentを呼び出して、個々の引数を追加することもできます。
AppNotificationBuilder API を使用して UI forapp 通知を作成する方法については、「アプリ通知コンテンツ」を参照してください。
アプリ通知の XML スキーマのリファレンス情報については、「アプリ通知コンテンツ スキーマ」を参照してください。