我在配置 WCF 的服务端时遇到了一些问题 - > MVC3 解决方案。
配置如下:
.Register(
Component.For<IFileDownloadService>()
.ImplementedBy<FileDownloadService>()
.Named("FileDownloadService")
.AsWcfService(new DefaultServiceModel()
.Hosted()
.PublishMetadata(x => x.EnableHttpGet())
.AddEndpoints(
WcfEndpoint.BoundTo(new BasicHttpBinding
{
TransferMode = TransferMode.Streamed
})
)
))
但是 WCFTestClient 向我显示生成的配置是:
谁能指出我解决为什么 TransferMode 保持缓冲的方向?实际上,我想为此端点配置许多其他设置,但我认为我会保持简单的开始。
在此先感谢您的帮助!