I’d like to know what is the best way to display all MessageHeaders server side. Actually the only way I know is the following:
OperationContext.Current.IncomingMessageHeaders.GetHeader<T>(Name, Namespace)
That method is only for a known MessageHeader but I’d like to display their values in a loop.
Thank You
The headers are loopable:
Found here