如何从 WCF 操作合约中检索客户端的计算机名称?
我目前正在查看OperationContect.Current 属性。是否有一个(嵌套)属性将始终返回客户端的计算机名称?我目前正在使用 net.tcp 绑定,但希望将来支持其他绑定。
使用.NET 3.5 SP1
I'm currently looking at the OperationContect.Current properties. Is there a (nested) property the will always return the machine name of the client? I'm currently using net.tcp binding, but would like to support additional bindings in the future.
Using .NET 3.5 SP1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从当前OperationContext的IncomingMessageProperties中获取远程端点的IP地址,例如:
You can get the remote endpoint's IP address from the current OperationContext's IncomingMessageProperties, eg: