IDispatchMessageInspector is an extension point in the .Net WCF library which allows a WCF message to a service to be intercepted prior to it being serviced and again before the response is sent to the client.
I am trying to use IDispatchMessageInspector in a WCF service implementation to access custom header values. Something like: public class …
c# .net wcf idispatchmessageinspectorI have created a custom soap header, and added it into my message via IClientMessageInspector public object BeforeSendRequest(ref System.…
wcf soap header idispatchmessageinspectorI'm doing a message inspector in WCF: public class LogMessageInspector : IDispatchMessageInspector, IClientMessageInspector which implements the method: public object AfterReceiveRequest(ref …
wcf c#-3.0 operation idispatchmessageinspector