使用service reference
我有这个:
using (OperationContextScope scope = new OperationContextScope(client.InnerChannel)) {
OperationContext.Current.OutgoingMessageProperties[HttpRequestMessageProperty.Name] = httpDetails;
return predicate(client);
}
我想知道如何使用Web 参考而不是服务参考来做同样的事情。使用网络参考该属性InnerChannel
不存在。
有办法做到这一点吗?