Blame view

SoapCore/Extensibility/IMessageInspector2.cs 343 Bytes
gy.huang authored
1
2
3
4
5
6
7
8
9
10
11
using System.ServiceModel.Channels;
using SoapCore.ServiceModel;

namespace SoapCore.Extensibility
{
	public interface IMessageInspector2
	{
		object AfterReceiveRequest(ref Message message, ServiceDescription serviceDescription);
		void BeforeSendReply(ref Message reply, ServiceDescription serviceDescription, object correlationState);
	}
}