次の方法で共有


AppNotificationBuilder.SetDuration(AppNotificationDuration) メソッド

定義

アプリ通知の期間を設定します。

public:
 virtual AppNotificationBuilder ^ SetDuration(AppNotificationDuration duration) = SetDuration;
AppNotificationBuilder SetDuration(AppNotificationDuration const& duration);
public AppNotificationBuilder SetDuration(AppNotificationDuration duration);
function setDuration(duration)
Public Function SetDuration (duration As AppNotificationDuration) As AppNotificationBuilder

パラメーター

duration
AppNotificationDuration

AppNotificationDuration 列挙からの値で、アプリ通知の期間を指定します。

戻り値

追加のメソッド呼び出しをチェーンできるように、AppNotificationBuilder インスタンスを返します。

次の例では、アプリ通知の XML ペイロードの期間を設定する方法を示します。

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

AppNotificationManager.Default.Show(notification);

結果の XML ペイロード:

<toast duration='long'>
    <visual>
        <binding template='ToastGeneric'>
            <text>Notification text.</text>
        </binding>
    </visual>
</toast>

注釈

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

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

適用対象