PushSharp は、stop が呼び出されたときにのみキューを処理します。プッシュシャープがキューを処理またはフラッシュする頻度を知っている人はいますか? リソースを節約するために通知を送信するたびに停止と開始を呼び出す必要はありません。
pushService = new PushService();
pushService.StartApplePushService(new ApplePushChannelSettings(prod, cert.InputStream.ReadToEnd(), passConfig.Value));
pushService.QueueNotification(
NotificationFactory.Apple().ForDeviceToken("mydeviceid").WithAlert("Notifications Started!").WithSound("default").WithBadge(7));
pushService.StopAllServices(true);