UnauthorizedAccessException beim Initialisieren von SpeechSynthesizer

Ich verwende Microsoft SpeechSynthesizer, um eine Audioausgabe für meine Windows Phone-App zu erstellen. Ich benutze diesen Code

private async void TextToSpeech_Tap(object sender, System.Windows.Input.GestureEventArgs e)
{
    SpeechSynthesizer synth = new SpeechSynthesizer();

    await synth.SpeakTextAsync("You have a meeting with Peter in 15 minutes.");
}

Ich bekomme diese Ausnahme:

{System.UnauthorizedAccessException: Access is denied.

at Windows.Phone.Speech.Synthesis.SpeechSynthesizer..ctor()
at NerdQuiz.Question.<TextToSpeech_Tap>d__1.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.AsyncMethodBuilderCore.<ThrowAsync>b__0(Object state)}

Ich habe herausgefunden, dass der Fehler bei auftritt

new SpeechSynthesizer();

Antworten auf die Frage(2)

Ihre Antwort auf die Frage