我正在開發一個WP-8.1 Silverlight應用程序,並試圖通過天藍色的通知中心註冊我的應用程序用於WNS通知服務,但我正在爲MPNS註冊 代碼中沒有錯誤建設和已在WMappmanifest在通知中心更改通知服務WNS也已經更新憑據仍然當我看到在通知中心我的註冊就說明MPNS不WNS註冊爲MPNS而不是WNS
var channel = await PushNotificationChannelManager.CreatePushNotificationChannelForApplicationAsync();
var hub = new NotificationHub(AzureNotificationHubName,AzureNotificationHubCnxString);
var result = await hub.RegisterNativeAsync(channel.Uri);
// Displays the registration ID so you know it was successful
if (result.RegistrationId != null)
{
PushChannel = channel;
PushChannel.PushNotificationReceived += OnPushNotification;
}
這有什麼更新?即時通訊有同樣的問題... –