WCF 与 IHttpHandler
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WCF 通过将绑定的 TransferMode 属性设置为“Streamed”、“StreamedRequest”或“StreamedResponse”来允许流式传输,具体取决于您的需要。
有关详细信息,请查看以下 MSDN 文章:
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: