PushNotificationChannelManager.CreatePushNotificationChannelForSecondaryTileAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
public:
static IAsyncOperation<PushNotificationChannel ^> ^ CreatePushNotificationChannelForSecondaryTileAsync(Platform::String ^ tileId);
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<PushNotificationChannel> CreatePushNotificationChannelForSecondaryTileAsync(winrt::hstring const& tileId);
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<PushNotificationChannel> CreatePushNotificationChannelForSecondaryTileAsync(string tileId);
function createPushNotificationChannelForSecondaryTileAsync(tileId)
Public Shared Function CreatePushNotificationChannelForSecondaryTileAsync (tileId As String) As IAsyncOperation(Of PushNotificationChannel)
参数
- tileId
-
String
Platform::String
winrt::hstring
要绑定到推送通知通道的辅助磁贴的 ID。
返回
绑定到辅助磁贴的 对象,用于从 Windows 推送通知服务请求 PushNotificationChannel (WNS) 。
- 属性
示例
此示例演示如何使用此方法检索辅助磁贴的推送通知通道。
var pushNotifications = Windows.Networking.PushNotifications;
var channel;
pushNotifications.PushNotificationChannelManager.createPushNotificationChannelForSecondaryTileAsync(myTileId).then(function (channel) {
// Your code here.
})
注解
注意
绑定到辅助磁贴的通道仅接受 磁贴 和 锁屏提醒 更新类型的推送通知。