Exemple #1
0
 public async Task<HtmlDocument> GetHtml()
 {
     using (var asc = new ASCSession(User, Pass))
     {
         return await asc.GetHtmlDocument();
     }
 }
Exemple #2
0
 /// <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);
     }
 }
Exemple #3
0
 /// <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;
     }
 }
Exemple #4
0
 public async Task<string> GetIframe(string url)
 {
     try
     {
         var asc = new ASCSession(User, Pass);
         await asc.GetIframe();
         return "";
     }
     catch (Exception e)
     {
         throw e;
     }
 }