WCF 与 IHttpHandler

发布于 2024-12-11 20:59:22 字数 115 浏览 0 评论 0原文

WCF中有没有可以像IHttpHandler一样模拟http流的东西?

我想要一种方法来不断地将字节写入我的http响应,直到我的客户端没有什么可写的,并且只是想知道这是否可能?

谢谢

Is there something in WCF that can simulate http streaming like IHttpHandler can do?

I want a way to constantly write bytes to my http response non stop to my client until there is nothing left to write using WCF and was just wondering if this is possible?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

做个少女永远怀春 2024-12-18 20:59:22

WCF 通过将绑定的 TransferMode 属性设置为“Streamed”、“StreamedRequest”或“StreamedResponse”来允许流式传输,具体取决于您的需要。

有关详细信息,请查看以下 MSDN 文章:

  • 流式消息传输
  • < a href="http://msdn.microsoft.com/en-us/library/ms733742.aspx" rel="nofollow">大数据和流媒体

WCF allows streaming by setting the TransferMode property of the binding to 'Streamed', 'StreamedRequest' or 'StreamedResponse', depending on your needs.

Check the following MSDN articles for more information on it:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文