public async Task<HtmlDocument> GetHtml() { using (var asc = new ASCSession(User, Pass)) { return await asc.GetHtmlDocument(); } }
/// <summary> /// Retorna a lista de itens da fila de trabalho /// </summary> /// <returns></returns> public List <Ocorrencia> GetOcorrencias() { using (var asc = new ASCSession(User, Pass)) { var ocorrencias = asc.GetOcorrencias(); _authenticated = asc.Autenticated; _ocorrencias = ocorrencias; return(ocorrencias); } }
/// <summary> /// Retorna a lista de itens da fila de trabalho /// </summary> /// <returns></returns> public List<Ocorrencia> GetOcorrencias() { using (var asc = new ASCSession(User, Pass)) { List<LinhaGridWebService> lista = new List<LinhaGridWebService>(); var oid = string.Empty; var ocorencias = asc.GetOcorrencias(); Authenticated = asc.Autenticad; return null; } }
public async Task<string> GetIframe(string url) { try { var asc = new ASCSession(User, Pass); await asc.GetIframe(); return ""; } catch (Exception e) { throw e; } }