本文整理匯總了VB.NET中System.ServiceModel.Dispatcher.IDispatchMessageInspector.BeforeSendReply方法的典型用法代碼示例。如果您正苦於以下問題:VB.NET IDispatchMessageInspector.BeforeSendReply方法的具體用法?VB.NET IDispatchMessageInspector.BeforeSendReply怎麽用?VB.NET IDispatchMessageInspector.BeforeSendReply使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.ServiceModel.Dispatcher.IDispatchMessageInspector
的用法示例。
在下文中一共展示了IDispatchMessageInspector.BeforeSendReply方法的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.BeforeSendReply
示例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.BeforeSendReply