Exemplo n.º 1
0
        public HttpResponseMessage GetFile(string path)
        {
            var content  = new StringContent(_projectSystem.ReadAllText(path), Encoding.UTF8);
            var response = new HttpResponseMessage();

            response.Content = content;
            return(response);
        }