System.ServiceModel.Dispatcher.IErrorHandler
namespace System.ServiceModel.Dispatcher
{
public interface IErrorHandler
{
void ProvideFault(Exception error, MessageVersion version, ref Message fault);
bool HandleError(Exception error);
}
}