private Task <NBestHypotheses> GetNbestFromUtteranceAsync(Byte[] fileContent)
 {
     return(new TaskFactory <NBestHypotheses>().StartNew(() =>
     {
         return speechRecognizer.GetNbestFromUtterance(fileContent, 10000);
     }));
 }