Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
WCF 是否支持分块传输编码?我一直在网上寻找,但我找不到太多关于这个主题的东西。我的 WCF REST API 都使用WebOperationContext.CreateStreamResponse向客户端返回响应。在 WebOperationContext 上使用这些 API,我希望 Transfer-Encoding: chunked 会被打开。
是的,它确实支持它,但它需要在传输绑定中设置。如果您使用的是WebHttpBinding,则可以将该TransferMode属性设置为TransferMode.Streamed如果您使用的是自定义绑定,则可以将该属性设置为HttpTransportBindingElement。
WebHttpBinding
TransferMode
TransferMode.Streamed
HttpTransportBindingElement