PushNotificationType.TileFlyout 在 UWP 中添加。它是什么?
PushNotificationType.TileFlyout addition in UWP. What is it?
我正在构建一个示例应用程序来测试 UWP 中的新推送通知功能。我在 PushNotificationType
枚举中发现了新添加的内容。
即PushNotificationType.TileFlyout
是提示UWP有第五种推送通知还是别的?
我找不到关于它的任何文档,因此我无法自己尝试,因为没有 xml 架构作为通知有效负载的基础。
Namely PushNotificationType.TileFlyout Does it suggest that there is a
fifth kind of push notification in UWP or is it something else
其实有一个叫Flyout Tile的tile(来自Windows10 Build 9901),有点像旧的“Zune Mixview”,但是已经过时了。
PushNotificationType.TileFlyout是检测到的,在Windows.UI.Notifications命名空间下,看这个Bing.comCached page
Used to send or clear a tile flyout (mix view) notification. This class also provides methods to start and stop periodic tile flyout notifications.
现在已删除与此推送通知类型相关的 API。
我正在构建一个示例应用程序来测试 UWP 中的新推送通知功能。我在 PushNotificationType
枚举中发现了新添加的内容。
即PushNotificationType.TileFlyout
是提示UWP有第五种推送通知还是别的?
我找不到关于它的任何文档,因此我无法自己尝试,因为没有 xml 架构作为通知有效负载的基础。
Namely PushNotificationType.TileFlyout Does it suggest that there is a fifth kind of push notification in UWP or is it something else
其实有一个叫Flyout Tile的tile(来自Windows10 Build 9901),有点像旧的“Zune Mixview”,但是已经过时了。
PushNotificationType.TileFlyout是检测到的,在Windows.UI.Notifications命名空间下,看这个Bing.comCached page
Used to send or clear a tile flyout (mix view) notification. This class also provides methods to start and stop periodic tile flyout notifications.
现在已删除与此推送通知类型相关的 API。