Ejemplo n.º 1
0
        public void Process(string url, string req, string res, AbstractHttpResultDataHandler handler)
        {
            var httpResult = new HttpResult
            {
                Url          = url,
                RequestBody  = req,
                ResponseBody = res
            };

            Process(httpResult, handler);
        }
Ejemplo n.º 2
0
        public void Process(HttpResult httpResult, AbstractHttpResultDataHandler handler)
        {
            var securedHttpResult = handler.GetSecuredResult(httpResult);

            Log(securedHttpResult);
        }