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 服务中进行调试时观察服务主机的最佳方式是什么?我想知道服务主机的绑定属性和其他信息。
我希望会有类似 ServiceHost.GetCurrent 的东西,但显然这是不对的,谷歌搜索只会产生关于如何配置或调整服务主机的文章。
您可以使用System.ServiceModel.OperationContext.Current.Host来访问当前运行的 ServiceHost 对象。 OperationContext还包含其他好东西,例如IncomingMessageHeaders一个示例。
System.ServiceModel.OperationContext.Current.Host
OperationContext
IncomingMessageHeaders