Using a service reference i have this:
using (OperationContextScope scope = new OperationContextScope(client.InnerChannel)) {
OperationContext.Current.OutgoingMessageProperties[HttpRequestMessageProperty.Name] = httpDetails;
return predicate(client);
}
I want to know how can i do the same with a web reference instead of service reference. Using web reference the property InnerChannel doesn't exist.
There is some way to do that?