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

Namespace:  Mindscape.LightSpeed.ServiceModel
Assembly:  Mindscape.LightSpeed.ServiceModel (in Mindscape.LightSpeed.ServiceModel.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
public Object AfterReceiveRequest(
	ref Message request,
	IClientChannel channel,
	InstanceContext instanceContext
)
Visual Basic (Declaration)
Public Function AfterReceiveRequest ( _
	ByRef request As Message, _
	channel As IClientChannel, _
	instanceContext As InstanceContext _
) As Object

Parameters

request
Type: System.ServiceModel.Channels..::.Message %
The request message.
channel
Type: System.ServiceModel..::.IClientChannel
The incoming channel.
instanceContext
Type: System.ServiceModel..::.InstanceContext
The current service instance.

Return Value

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

Implements

IDispatchMessageInspector..::.AfterReceiveRequest(Message%, IClientChannel, InstanceContext)

See Also