What does WCF with the return of the method IDispatchMessageInspector.AfterReceiveRequest?
All I have encountered was return null; examples.
What does WCF with the return of the method IDispatchMessageInspector.AfterReceiveRequest ? All I have
Share
It passes the value to the
BeforeSendReplymethod, and it can be used to correlate the two calls. You can find one example of a non-null value being returned in the example on the post at http://blogs.msdn.com/b/carlosfigueira/archive/2011/04/19/wcf-extensibility-message-inspectors.aspx.