private Task <String> GetHypothesisFromUtteranceAsync(Byte[] fileContent)
 {
     return(new TaskFactory <String>().StartNew(() =>
     {
         return speechRecognizer.GetHypothesisFromUtterance(fileContent);
     }));
 }