C# 클래스 ServiceModelContrib.SilverlightFaultMessageInspector

상속: IDispatchMessageInspector
파일 보기 프로젝트 열기: kredinor/ServiceModelContrib 1 사용 예제들

공개 메소드들

메소드 설명
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