public async Task ExportDocument(string fileName, int asycudaDocumentId)
 {
     using (var ctx = new AsycudaDocumentClient())
     {
         await ctx.ExportDocument(fileName, asycudaDocumentId).ConfigureAwait(false);
     }
 }