1
Azure Notification HubとXamarin.Macでプッシュ通知を送信しようとしています。 私にはこのエラーがあり、理由はわかりません。誰かが私にそれに対処するのを助けることができますか?Xamarin.Mac - 通知を送信する
エラー:
System.TypeInitializationException: The type initializer for 'TimerManager' threw an exception. ---> System.EntryPointNotFoundException: CreateWaitableTimer
マイコード:
private static async void SendNotificationAsync()
{
NotificationHubClient hub = NotificationHubClient
.CreateClientFromConnectionString("<connection string>", "<hub name>");
string toast = "<?xml version=\"1.0\" encoding=\"utf-8\"?>" +
"<wp:Notification xmlns:wp=\"WPNotification\">" +
"<wp:Toast>" +
"<wp:Text1>Content</wp:Text1>" +
"</wp:Toast> " +
"</wp:Notification>";
await hub.SendMpnsNativeNotificationAsync(toast);
}
おかげであなたの答えのために、私はREST APIを使用します。それは私の問題には最高の解決策だ:) :)ありがとう! –