AppNotificationDuration 열거형
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
AppNotification 표시되는 기간을 지정합니다.
public enum class AppNotificationDuration
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilderContract, 65536)]
enum class AppNotificationDuration
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilderContract), 65536)]
public enum AppNotificationDuration
var value = Microsoft.Windows.AppNotifications.Builder.AppNotificationDuration.default
Public Enum AppNotificationDuration
- 상속
-
AppNotificationDuration
- 특성
필드
Name | 값 | Description |
---|---|---|
Default | 0 | 기본 기간입니다. |
Long | 1 | 긴 기간입니다. |
예제
다음 예제에서는 앱 알림에 대한 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.SetDuration호출하여 앱 알림 기간을 설정합니다.