AppNotificationBuilder.SetTimeStamp(DateTime) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
アプリ通知のカスタム タイム スタンプを設定します。
public:
virtual AppNotificationBuilder ^ SetTimeStamp(DateTime value) = SetTimeStamp;
AppNotificationBuilder SetTimeStamp(DateTime const& value);
public AppNotificationBuilder SetTimeStamp(System.DateTimeOffset value);
function setTimeStamp(value)
Public Function SetTimeStamp (value As DateTimeOffset) As AppNotificationBuilder
パラメーター
- value
- DateTime DateTimeOffset
DateTimeOffset カスタム タイムスタンプの値を指定する値です。
戻り値
追加のメソッド呼び出しをチェーンできるように、AppNotificationBuilder インスタンスを返します。
例
次の例では、アプリ通知の XML ペイロードにカスタム タイム スタンプを設定する方法を示します。
var notification = new AppNotificationBuilder()
.AddText("Notification text.")
.SetTimeStamp(DateTimeOffset.Now)
.BuildNotification();
AppNotificationManager.Default.Show(notification);
結果の XML ペイロード:
<toast displayTimestamp='2022-10-25T15:54:31-07:00'>
<visual>
<binding template='ToastGeneric'>
<text>Notification text.</text>
</binding>
</visual>
</toast>
注釈
次のスクリーンショットは、カスタム タイムスタンプの配置を示しています。
アプリ通知の XML スキーマのリファレンス情報については、「アプリ通知コンテンツ スキーマ」を参照してください。