iOS デバイス用のサンドボックス モード (開発およびテスト用) を使用して、プログラムで通知ハブを作成する必要があります。それを構成する方法がわからない。以下は、ハブの作成に使用しているコードです
NotificationHubDescription notificationHubDescription = new NotificationHubDescription(hubName);
notificationHubDescription.ApnsCredential = new ApnsCredential(certificateFile, certificatePassword);
if (!namespaceManager.NotificationHubExists(hubName))
{
notificationHubDesc = namespaceManager.CreateNotificationHub(notificationHubDescription);
}