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