PushNotificationChannelManager.CreatePushNotificationChannelForSecondaryTileAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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
- Vue d’ensemble des services de notifications Push Windows (WNS)
- Exemple de notifications Push et périodiques (archivé)
- Démarrage rapide : envoi d’une notification Push
- Comment demander, créer et enregistrer un canal de notification
- En-têtes des demandes et des réponses du service de notifications Push