本文整理汇总了VB.NET中System.ServiceModel.Dispatcher.IDispatchMessageInspector.AfterReceiveRequest方法的典型用法代码示例。如果您正苦于以下问题:VB.NET IDispatchMessageInspector.AfterReceiveRequest方法的具体用法?VB.NET IDispatchMessageInspector.AfterReceiveRequest怎么用?VB.NET IDispatchMessageInspector.AfterReceiveRequest使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.ServiceModel.Dispatcher.IDispatchMessageInspector
的用法示例。
在下文中一共展示了IDispatchMessageInspector.AfterReceiveRequest方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: BeforeSendReply
#Region "IDispatchMessageInspector Members"
Public Function AfterReceiveRequest(ByRef request As System.ServiceModel.Channels.Message, _
ByVal channel As IClientChannel, ByVal instanceContext As InstanceContext) _
As Object Implements IDispatchMessageInspector.AfterReceiveRequest
Console.WriteLine("IDispatchMessageInspector.AfterReceiveRequest called.")
Return Nothing
End Function
Public Sub BeforeSendReply(ByRef reply As System.ServiceModel.Channels.Message, ByVal correlationState As Object) _
Implements IDispatchMessageInspector.BeforeSendReply
Console.WriteLine("IDispatchMessageInspector.BeforeSendReply called.")
End Sub
#End Region
开发者ID:VB.NET开发者,项目名称:System.ServiceModel.Dispatcher,代码行数:13,代码来源:IDispatchMessageInspector.AfterReceiveRequest
示例2: AddBindingParameters
#Region "IServiceBehavior Members"
Public Sub AddBindingParameters(ByVal serviceDescription As ServiceDescription, _
ByVal serviceHostBase As ServiceHostBase, ByVal endpoints As _
System.Collections.ObjectModel.Collection(Of ServiceEndpoint), _
ByVal bindingParameters As BindingParameterCollection) Implements IServiceBehavior.AddBindingParameters
Return
End Sub
Public Sub ApplyDispatchBehavior(ByVal serviceDescription As ServiceDescription, _
ByVal serviceHostBase As ServiceHostBase) Implements _
IServiceBehavior.ApplyDispatchBehavior
For Each chDisp As ChannelDispatcher In serviceHostBase.ChannelDispatchers
For Each epDisp As EndpointDispatcher In chDisp.Endpoints
epDisp.DispatchRuntime.MessageInspectors.Add(New Inspector())
For Each op As DispatchOperation In epDisp.DispatchRuntime.Operations
op.ParameterInspectors.Add(New Inspector())
Next op
Next epDisp
Next chDisp
End Sub
开发者ID:VB.NET开发者,项目名称:System.ServiceModel.Dispatcher,代码行数:20,代码来源:IDispatchMessageInspector.AfterReceiveRequest