System.ServiceModel.Dispatcher.IParameterInspector
namespace System.ServiceModel.Dispatcher
{
public interface IParameterInspector
{
void AfterCall(string operationName, object[] outputs, object returnValue, object correlationState);
object BeforeCall(string operationName, object[] inputs);
}
}