ScheduledTileNotification.Tag 属性

定义

获取或设置一个字符串,Windows 可以使用该字符串来防止重复的通知内容出现在队列中。

public:
 property Platform::String ^ Tag { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring Tag();

void Tag(winrt::hstring value);
public string Tag { get; set; }
var string = scheduledTileNotification.tag;
scheduledTileNotification.tag = string;
Public Property Tag As String

属性值

String

Platform::String

winrt::hstring

一个包含 16 个字符或更少 (字符串,加上标识堆栈中通知的终止 null 字符) 。 虽然字符串内容没有设置格式,但我们建议它应与通知的内容相关。

注解

ScheduledTileNotification.tag 和 ScheduledTileNotification.id 用途类似:

  • Windows 使用 ScheduledTileNotification.tag 属性来防止重复的通知内容同时出现在队列中。 它允许通知在队列中就地更新,以防止它包含过时的信息。
  • ScheduledTileNotification.id 属性标识计划中的通知。 这样就可以识别或从计划中删除通知。

适用于

另请参阅