PushNotificationChannelManagerForUser.CreatePushNotificationChannelForApplicationAsync Methode

Definition

Überlädt

CreatePushNotificationChannelForApplicationAsync()

Erstellt ein an die aufrufende App gebundenes -Objekt, über das Sie einen Pushbenachrichtigungskanal von Windows-Pushbenachrichtigungsdiensten (WNS) abrufen.

CreatePushNotificationChannelForApplicationAsync(String)

Erstellt ein An eine angegebene App gebundenes -Objekt, über das Sie einen Pushbenachrichtigungskanal von Windows Push Notification Services (WNS) abrufen. Die angegebene App muss sich im gleichen Paket wie die aufrufende App befinden.

CreatePushNotificationChannelForApplicationAsync()

Erstellt ein an die aufrufende App gebundenes -Objekt, über das Sie einen Pushbenachrichtigungskanal von Windows-Pushbenachrichtigungsdiensten (WNS) abrufen.

public:
 virtual IAsyncOperation<PushNotificationChannel ^> ^ CreatePushNotificationChannelForApplicationAsync() = CreatePushNotificationChannelForApplicationAsync;
/// [Windows.Foundation.Metadata.Overload("CreatePushNotificationChannelForApplicationAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<PushNotificationChannel> CreatePushNotificationChannelForApplicationAsync();
[Windows.Foundation.Metadata.Overload("CreatePushNotificationChannelForApplicationAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<PushNotificationChannel> CreatePushNotificationChannelForApplicationAsync();
function createPushNotificationChannelForApplicationAsync()
Public Function CreatePushNotificationChannelForApplicationAsync () As IAsyncOperation(Of PushNotificationChannel)

Gibt zurück

Das an die aufrufende App gebundene Objekt, das verwendet wird, um einen PushNotificationChannel von den Windows-Pushbenachrichtigungsdiensten (WNS) anzufordern.

Attribute

Weitere Informationen

Gilt für:

CreatePushNotificationChannelForApplicationAsync(String)

Erstellt ein An eine angegebene App gebundenes -Objekt, über das Sie einen Pushbenachrichtigungskanal von Windows Push Notification Services (WNS) abrufen. Die angegebene App muss sich im gleichen Paket wie die aufrufende App befinden.

public:
 virtual IAsyncOperation<PushNotificationChannel ^> ^ CreatePushNotificationChannelForApplicationAsync(Platform::String ^ applicationId) = CreatePushNotificationChannelForApplicationAsync;
/// [Windows.Foundation.Metadata.Overload("CreatePushNotificationChannelForApplicationAsyncWithId")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<PushNotificationChannel> CreatePushNotificationChannelForApplicationAsync(winrt::hstring const& applicationId);
[Windows.Foundation.Metadata.Overload("CreatePushNotificationChannelForApplicationAsyncWithId")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<PushNotificationChannel> CreatePushNotificationChannelForApplicationAsync(string applicationId);
function createPushNotificationChannelForApplicationAsync(applicationId)
Public Function CreatePushNotificationChannelForApplicationAsync (applicationId As String) As IAsyncOperation(Of PushNotificationChannel)

Parameter

applicationId
String

Platform::String

winrt::hstring

Der paketrelative Anwendungsbezeichner (PRAID) der App, die an den Pushbenachrichtigungskanal gebunden werden soll. Die angegebene App muss sich im gleichen Paket wie die aufrufende App befinden. Weitere Informationen zur PRAID finden Sie im Id-Attribut des Application-Elements .

Wenn Sie Hintergrundaufgaben auf einem out-of-process-COM-Server hosten, übergeben Sie getrennt von Ihrer Standard-Anwendung als Argument für applicationId die PRAID der Anwendung, die die windows.backgroundTask Erweiterung in einem eigenen Paketmanifest definiert.

Gibt zurück

Das -Objekt, gebunden an die in applicationId angegebene App, das verwendet wird, um einen PushNotificationChannel von den Windows-Pushbenachrichtigungsdiensten (WNS) anzufordern.

Attribute

Weitere Informationen

Gilt für: