Click or drag to resize

WcfMessageInspectorAfterReceiveRequest Method

Called after an inbound message has been received but before the message is dispatched to the intended operation.

Namespace:  Hummingbird.TestFramework.Services
Assembly:  Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax
public Object AfterReceiveRequest(
	ref Message request,
	IClientChannel channel,
	InstanceContext instanceContext
)

Parameters

request
Type: System.ServiceModel.ChannelsMessage
The request message.
channel
Type: System.ServiceModelIClientChannel
The incoming channel.
instanceContext
Type: System.ServiceModelInstanceContext
The current service instance.

Return Value

Type: Object
The object used to correlate state. This object is passed back in the BeforeSendReply(Message, Object) method.

Implements

IDispatchMessageInspectorAfterReceiveRequest(Message, IClientChannel, InstanceContext)
See Also