C#HttpListener.发送EMPTY响应(没有任何文物)

前端之家收集整理的这篇文章主要介绍了C#HttpListener.发送EMPTY响应(没有任何文物)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用C#HttpListener类来实现一些服务器.这就是问题所在.我只想向客户端发送一个空的响应请求
HTTP/1.1 200 OK

要么

HTTP/1.1 400 Bad Request

没有任何额外的文字.所以我设置状态代码和状态描述,不要将任何字节写入响应OutputStream – 我只是不需要它们.然后关闭响应以使用response.Close()方法启动向客户端发送字节.而我在Fiddler所展示的客户端上得到的是

HTTP/1.1 200 OK

Transfer-Encoding: chunked

Server: Microsoft-HTTPAPI/2.0

Date: Sun,25 Oct 2015 10:42:12 GMT


0

服务器和日期字段有一种解决方法
HttpListener Server Header c#.

但是如何从这个响应中删除这些“Transfer-Encoding:chunked”artefact和“0”body?!

感谢所有提前!

代码

private void ProcessContext(HttpListenerContext aContext)
    {
        HttpListenerResponse response = aContext.Response;

        response.StatusCode = (int)HttpStatusCode.OK;
        response.StatusDescription = "OK";
        response.Close();

}

解决方法

@H_502_26@ 这将除去状态和Content-Length标题之外的所有内容
HttpListener listener = new HttpListener();
listener.Prefixes.Add("http://*:5555/");
listener.Start();
listener.BeginGetContext(ar =>
{
    HttpListener l = (HttpListener)ar.AsyncState;
    HttpListenerContext context = l.EndGetContext(ar);

    context.Response.Headers.Clear();
    context.Response.SendChunked = false;
    context.Response.StatusCode = 200;
    context.Response.Headers.Add("Server",String.Empty);
    context.Response.Headers.Add("Date",String.Empty);
    context.Response.Close();
},listener);

在小提琴手中,你会看到这个:

原文链接:https://www.f2er.com/c/111089.html

猜你在找的C&C++相关文章