AppNotificationBuilder.IsUrgentScenarioSupported 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回值,指出目前裝置是否支持緊急應用程式通知案例。
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 架構的參考資訊,請參閱 應用程式通知內容架構。