UnauthorizedAccessException podczas inicjowania SpeechSynthesizer

Używam Microsoft SpeechSynthesizer do tworzenia wyjścia audio dla mojej aplikacji Windows Phone. Używam tego kodu

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.");
}

Mam ten wyjątek:

{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)}

Dowiedziałem się, że błąd występuje w

new SpeechSynthesizer();

questionAnswers(2)

yourAnswerToTheQuestion