在.NET中向前端发送EventStream流式数据

1.要让Controller类的方法返回EventStream类型的数据,首先需要确保在 Startup.cs 或 Program.cs 文件中注册了 IHttpContextAccessor:

public class Program
{
    public static void Main(string[] args)
    {
        var builder = WebApplication.CreateBuilder(args);

        // 添加服务到容器
        builder.Services.AddHttpContextAccessor();

        // 其他配置...

        var app = builder.Build();

        // 中间件配置...

        app.Run();
    }
}

2.在构造函数或方法注入拿到HttpContext

public class MyController : Controller
{
    public Task TestEventStream([FromServices] IHttpContextAccessor httpContextAccessor,...Args args)
    {
        var httpContext = httpContextAccessor.HttpContext;
        // 使用 httpContext
        
    }
}

3.为上下文设置内容格式为event-stream

// 设置响应格式,设置缓存为关闭
httpContext.Response.ContentType = "text/event-stream";
httpContext.Response.Headers.Add("Cache-Control", "no-cache");
httpContext.Response.Headers.Add("Connection", "keep-alive");

4.使用StreamReader从流数据Stream中读取,并使用Response的Write方法写入Response的响应体当中

public async Task SetResponse(Stream stream,HttpContext context){
    using StreamReader reader = new StreamReader(stream)
    while(!reader.EndOfStream){
        string? line = await reader.ReadLineAsync();
        // 对line进行格式化处理
        string? message = DealWithData(line);
        // 写入到响应体当中
        await context.Response.WriteAsync(message);
        await httpContext.Response.Body.FlushAsync();
    }    
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值