最近有时间,打算看看SignalR,顺便了解一下Server Sent Events. Controller 输出的数据格式为:data:[数据]\n\n.输出的数据尝试8000多字符也没问题,具体的上限就没试了.但是如果数据里也包含\n\n的话,数据就会被截断. public class HomeController : Controller { // GET: Home public ActionResult Index() { return View(); } //Server-Sent…