我使用http侦听器设置了一个Web服务器。它用于显示html文件。 html文件创建了一个我希望应用程序获取的请求。以下是fiddler中请求的屏幕截图: This is the only request that needs to be captured
这就是我的尝试:
NULL
每次在服务器上发出请求时,此代码始终返回“System.Net.HttpResponseStream”。我希望看到它返回的是什么,但是作为一个字符串。
这是我的网络服务器代码:
var rstr = _responderMethod(ctx.Request);
var buf = Encoding.UTF8.GetBytes(rstr);
ctx.Response.ContentLength64 = buf.Length;
ctx.Response.OutputStream.Write(buf, 0, buf.Length);
Console.Write(ctx.Response.OutputStream);
答案 0 :(得分:0)
从您提供的代码看起来,您将rstr
作为UTF8字符串写入输出流,因此当您再次读取输出流以获取其返回的内容时,您将获得相同的值为rstr
。所以这样做应该打印你在stdout / console中发回的内容。
Console.WriteLine(rstr);
或者您可以使用StreamReader
类来包装输出流并将数据作为字符串读取。
using (var reader = new StreamReader(ctx.Response.OutputStream)
{
// Seek to origin, to read all data in the output stream,
ctx.Response.OutputStream.Seek(0, SeekOrigin.Begin);
var content = reader.ReadToEnd();
Console.WriteLine(content);
// You might not want to close the output stream in case you want to do more work with it.
}