如何将html发送到C#SelfHost控制台应用程序

时间:2012-10-04 10:43:26

标签: c# self-hosting

使用System.Web.Http.SelfHost等如何将html页面发送到浏览器?

目前,在谷歌浏览器中它以文字形式出现。我找不到如何将标题更改为text / html,我不知道是否会修复它。

我尝试过多种不同的附件而没有成功。

剧集数据通过Google Chrome浏览器中的浏览器显示为Json,但在IE中它会询问我是否要(O)笔或(S)ave它。在IE中,html具有相同的结果。

我想从RAM发送html,而不是磁盘。

为简洁起见,省略了错误处理。

代码如下: -

using System;
using System.IO;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Net.Http;
using System.Net.Http.Formatting;
using System.Web.Http;
using System.Web.Http.SelfHost;

namespace Console015
{
    class Program
    {
        static void Main(string[] args)
        {
            HttpSelfHostServer server = null;

            using (StreamReader reader01 = new StreamReader("test01.html"))
            {
                LoginController.sPage = reader01.ReadToEnd();
            }
            Console.WriteLine(LoginController.sPage);

            String sUrl = "http://localhost:8080";
            var serverConfig = new HttpSelfHostConfiguration(sUrl);
            serverConfig.Formatters.Clear();
            serverConfig.Formatters.Insert(0, new JsonMediaTypeFormatter());
            serverConfig.Routes.MapHttpRoute(
                name: "DefaultApiRoute",
                routeTemplate: "endpoints/{controller}",
                defaults: null
                );

            server = new HttpSelfHostServer(serverConfig);

            server.OpenAsync().Wait();

            Console.WriteLine("Listening At : " + sUrl + "/endpoints/episode");
            Console.ReadLine();
        }
    }

    public class LoginController : ApiController
    {
        public static string sPage = string.Empty;
        public HttpResponseMessage GetLoginPage()
        {
            // Create a 200 response.
            var response = new HttpResponseMessage(System.Net.HttpStatusCode.OK)
            {
                Content = new StringContent(sPage)
            };

            Console.WriteLine("Returning Login Page");

            return response;

        }
    }

    public class Episode
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public string ReleasedOn { get; set; }
    }

    public class EpisodeController : ApiController
    {
        public IList<Episode> GetAllEpisodes()
        {
            return new List<Episode>
            {
                new Episode {Id = 1, Name = "Episode 1", ReleasedOn =     DateTime.Now.AddDays(10).ToShortDateString()},
                new Episode {Id = 2, Name = "Episode 2", ReleasedOn =     DateTime.Now.AddDays( -5 ).ToShortDateString()},  
                new Episode {Id = 3, Name = "Episode 3", ReleasedOn = DateTime.Now.AddDays( -3 ).ToShortDateString()},  
                new Episode {Id = 4, Name = null, ReleasedOn = DateTime.Now.AddDays( 0 ).ToShortDateString()},  
            };
        }
    }
}

HTML测试数据是:

<!DOCTYPE html>
<html>
<body>

    <h1>My First Heading</h1>

    <p>My first paragraph.</p>

</body>
</html>

1 个答案:

答案 0 :(得分:1)

答案似乎是:     response.Content.Headers.ContentType.MediaType =“text / html”;