标签: c# wcf
我想从OperationContext.Current访问请求标头信息,是否可以安全地假设如果WCF服务有数千个调用,则不会混淆,OperationContext.Current将始终具有实际的请求标头,无论InstanceContextMode是PerSession,PerCall还是Single?
OperationContext.Current
InstanceContextMode
PerSession
PerCall
Single
答案 0 :(得分:2)
OperationContext.Current是当前线程的上下文,所以是的,它是安全的。