如何在 WCF 中的 netNamedPipeBinding 中禁用可靠会话?
如何禁用命名管道绑定中的可靠会话?
How do I disable reliable sessions in a named pipe binding?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何禁用命名管道绑定中的可靠会话?
How do I disable reliable sessions in a named pipe binding?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
命名管道不支持可靠的会话配置。您需要创建自定义绑定。
有关详细信息,请访问可靠会话概述
Named Pipe doesn't support reliable session configuration. You'd need to create a custom binding.
More info at Reliable Sessions Overview
在打开主机之前,如果使用命名管道绑定,请将
Contract.SessionMode
设置为SessionMode.Allowed
Before opening the host, set the
Contract.SessionMode
toSessionMode.Allowed
when using a named pipe binding