次の方法で共有


AppNotificationBuilder.IsUrgentScenarioSupported メソッド

定義

緊急のアプリ通知シナリオが現在のデバイスでサポートされているかどうかを示す値を返します。

public:
 static bool IsUrgentScenarioSupported();
 static bool IsUrgentScenarioSupported();
public static bool IsUrgentScenarioSupported();
function isUrgentScenarioSupported()
Public Shared Function IsUrgentScenarioSupported () As Boolean

戻り値

Boolean

bool

現在のデバイスが緊急のアプリ通知シナリオをサポートしている場合は True。それ以外の場合は false。

次の例では、緊急のアプリ通知シナリオがサポートされているかどうかを確認する方法を示します。

var builder = new AppNotificationBuilder()
    .AddText("Notification text.");

if (AppNotificationBuilder.IsUrgentScenarioSupported())
{
    builder.SetScenario(AppNotificationScenario.Urgent);
}

AppNotificationManager.Default.Show(builder.BuildNotification());

緊急シナリオがサポートされている場合の結果の XML ペイロード:

<toast scenario='urgent'>
    <visual>
        <binding template='ToastGeneric'>
            <text>Notification text.</text>
        </binding>
    </visual>
</toast>

注釈

AppNotificationBuilder.SetScenario メソッドを使用すると、AppNotificationScenario 列挙からいずれかのシナリオを指定できます。これにより、システムは一部の通知動作を調整して、指定したシナリオに一貫したエクスペリエンスを提供できます。 緊急 シナリオの値は、Windows 10 ビルド 19041 以降でのみサポートされます。 このメソッドを使用すると、緊急シナリオが現在のデバイスでサポートされているかどうかを実行時に判断できます。

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

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

適用対象