Partager via


PushNotificationChannelManager.CreatePushNotificationChannelForSecondaryTileAsync Méthode

Définition

Crée un objet, lié à une vignette secondaire, via lequel vous récupérez un canal de notification Push à partir de Windows Push Notification Services (WNS). La vignette peut être une vignette secondaire de l’application appelante ou de toute autre application dans le même package.

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)

Paramètres

tileId
String

Platform::String

winrt::hstring

ID de la vignette secondaire à lier au canal de notification Push.

Retours

Objet, lié à la vignette secondaire, utilisé pour demander un PushNotificationChannel à partir de Windows Push Notification Services (WNS).

Attributs

Exemples

Cet exemple montre l’utilisation de cette méthode pour récupérer un canal de notification Push pour une vignette secondaire.

var pushNotifications = Windows.Networking.PushNotifications;
var channel;

pushNotifications.PushNotificationChannelManager.createPushNotificationChannelForSecondaryTileAsync(myTileId).then(function (channel) {
    // Your code here.
})

Remarques

Notes

Les canaux liés aux vignettes secondaires acceptent uniquement les notifications Push pour les types de mise à jour de vignettes et de badges .

S’applique à

Voir aussi