예제 #1
0
        public HttpResponseMessage GetIncrementGoogleCityList(string cl)
        {
            HttpContext.Current.Response.Cache.VaryByHeaders["accept-enconding"] = true;
            var json = locationservice.GetIncrementGoogleCityList(cl).ToList();

            response = toJson(json);
            request  = HttpContext.Current.Request;
            logservices.logservices(request, response, "dbo", "json", "path", string.Empty, string.Empty, "increment", "google", cl);
            return(response);
        }