Пример #1
0
        public HttpResponseMessage Get()
        {
            Service.LogService log = new Service.LogService();
            string             msg = log.WriteLog();

            return(new HttpResponseMessage()
            {
                Content = new StringContent(msg)
            });
        }
 public HttpResponseMessage Get()
 {
     Service.LogService log = new Service.LogService();
     string msg=log.WriteLog();
     return new HttpResponseMessage() { Content = new StringContent(msg) };
 }