Ejemplo n.º 1
0
        public string BuscarDadosWebService(string userAgent, string contentType, string body, MetodosWebService method, Dictionary <string, string> dadosAutenticacao, bool isBasic, bool isHeader)
        {
            WsRequisicao ws        = new WsRequisicao(urlWebService, usuarioWebService, senhaWebService);
            string       resultado = ws.ExecutarRequisicao(userAgent, contentType, method, body, dadosAutenticacao, isBasic, isHeader);

            return(resultado);
        }
Ejemplo n.º 2
0
        public string BuscarPaginas(string userAgent, string contentType, string body)
        {
            WsRequisicao ws        = new WsRequisicao(urlWebService, usuarioWebService, senhaWebService);
            string       resultado = ws.ExecutarRequisicao(userAgent, contentType, MetodosWebService.GET, body, null, false, false);

            return(resultado);
        }