3 implementations of IErrorHandler
System.ServiceModel.Web (2)
System\ServiceModel\Description\WebScriptEnablingBehavior.cs (1)
368class JsonErrorHandler : IErrorHandler
System\ServiceModel\Dispatcher\WebErrorHandler.cs (1)
21class WebErrorHandler : IErrorHandler
System.WorkflowServices (1)
System\ServiceModel\Dispatcher\DurableErrorHandler.cs (1)
10abstract class DurableErrorHandler : IErrorHandler
9 references to IErrorHandler
System.ServiceModel (6)
System\ServiceModel\Dispatcher\ChannelDispatcher.cs (3)
27Collection<IErrorHandler> errorHandlers; 93this.errorHandlers = new Collection<IErrorHandler>(); 161public Collection<IErrorHandler> ErrorHandlers
System\ServiceModel\Dispatcher\ErrorBehavior.cs (3)
16IErrorHandler[] handlers; 23this.handlers = EmptyArray<IErrorHandler>.ToArray(channelDispatcher.ErrorHandlers); 44internal IErrorHandler[] Handlers
System.ServiceModel.Routing (1)
System\ServiceModel\Routing\RoutingChannelExtension.cs (1)
237foreach (IErrorHandler errorHandler in this.endpointBehavior.ChannelDispatcher.ErrorHandlers)
System.WorkflowServices (2)
System\ServiceModel\Description\DurableServiceAttribute.cs (1)
143IErrorHandler errorHandler = new ServiceErrorHandler(includeExceptionDetails);
System\ServiceModel\Description\WorkflowServiceBehavior.cs (1)
272IErrorHandler workflowOperationErrorHandler = new WorkflowOperationErrorHandler(includeExceptionDetailsInFaults);