| 
            
              FormatSpecificationInspectorAfterReceiveRequest Method
             | 
          
        
        
            Called after an inbound message has been received but before the message is dispatched to the intended operation.
            
        
        Namespace: GSF.ServiceModel.ActivationAssembly: GSF.ServiceModel (in GSF.ServiceModel.dll) Version: 2.4.258-beta
Syntaxpublic Object AfterReceiveRequest(
	ref Message request,
	IClientChannel channel,
	InstanceContext instanceContext
)
Public Function AfterReceiveRequest ( 
	ByRef request As Message,
	channel As IClientChannel,
	instanceContext As InstanceContext
) As Object
public:
virtual Object^ AfterReceiveRequest(
	Message^% request, 
	IClientChannel^ channel, 
	InstanceContext^ instanceContext
) sealed
abstract AfterReceiveRequest : 
        request : Message byref * 
        channel : IClientChannel * 
        instanceContext : InstanceContext -> Object 
override AfterReceiveRequest : 
        request : Message byref * 
        channel : IClientChannel * 
        instanceContext : InstanceContext -> Object function AfterReceiveRequest(request, channel, instanceContext);
 View SourceParameters
- request  Message
 - The request message.
 - channel  IClientChannel
 - The incoming channel.
 - instanceContext  InstanceContext
 - The current service instance.
 
Return Value
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