public HttpResponseMessage GetFile(string path) { var content = new StringContent(_projectSystem.ReadAllText(path), Encoding.UTF8); var response = new HttpResponseMessage(); response.Content = content; return(response); }