C# Класс ServiceModelContrib.SilverlightFaultMessageInspector

Наследование: IDispatchMessageInspector
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
AfterReceiveRequest ( Message &request, IClientChannel channel, System.ServiceModel.InstanceContext instanceContext ) : object

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

BeforeSendReply ( Message &reply, object correlationState ) : void

Called after the operation has returned but before the reply message is sent.

Описание методов

AfterReceiveRequest() публичный Метод

Called after an inbound message has been received but before the message is dispatched to the intended operation.
public AfterReceiveRequest ( Message &request, IClientChannel channel, System.ServiceModel.InstanceContext instanceContext ) : object
request Message The request message.
channel IClientChannel The incoming channel.
instanceContext System.ServiceModel.InstanceContext The current service instance.
Результат object

BeforeSendReply() публичный Метод

Called after the operation has returned but before the reply message is sent.
public BeforeSendReply ( Message &reply, object correlationState ) : void
reply Message The reply message. This value is null if the operation is one way.
correlationState object The correlation object returned from the method.
Результат void