private async Task <Tuple <string, byte[]> > getDictionaryData(string fecha) { string aux = fecha; FileCode filecode = new FileCode() { values = new System.Collections.Generic.Dictionary <string, string>() { { "id_doc", "0" }, { "type", TIPO_LIQUIDACION }, { "client", SesionCliente().Nom_cor_emp }, { "fecha", fecha }, { "id_usu", "" }, { "encryptDocument", "S" } } }; filecode.Encode(); var archivo = await Task.Run(() => getFileData(filecode.Token)); return(new Tuple <string, byte[]>(fecha, (archivo as FileContentResult).FileContents)); }
protected ActionResult getFile(FileCode fileCode)//int id_doc, string type, string client, string fecha, string id_usu) { fileCode.Encode(); ViewBag.fileCode = fileCode; return(View("getFile")); }