1 type derived from ExceptionHandler
System.ServiceModel (1)
System\ServiceModel\Dispatcher\ExceptionHandler.cs (1)
66class AlwaysHandleExceptionHandler : ExceptionHandler
18 references to ExceptionHandler
System.ServiceModel (18)
System\ServiceModel\Channels\ConnectionAcceptor.cs (2)
110if ((errorCallback == null) && !ExceptionHandler.HandleTransportExceptionHelper(exception)) 210if ((errorCallback == null) && !ExceptionHandler.HandleTransportExceptionHelper(exception))
System\ServiceModel\Channels\ConnectionDemuxer.cs (1)
293if (!ExceptionHandler.HandleTransportExceptionHelper(e))
System\ServiceModel\Channels\HttpChannelListener.cs (1)
1213else if (!ExceptionHandler.HandleTransportExceptionHelper(e))
System\ServiceModel\Channels\SessionConnectionReader.cs (2)
119if (!ExceptionHandler.HandleTransportExceptionHelper(e)) 215if (!ExceptionHandler.HandleTransportExceptionHelper(e))
System\ServiceModel\Channels\SharedHttpTransportManager.cs (1)
419return ExceptionHandler.HandleTransportExceptionHelper(e);
System\ServiceModel\Channels\SingletonConnectionReader.cs (2)
185if (!ExceptionHandler.HandleTransportExceptionHelper(e)) 926if (!ExceptionHandler.HandleTransportExceptionHelper(e))
System\ServiceModel\Dispatcher\ExceptionHandler.cs (9)
16static readonly ExceptionHandler alwaysHandle = new AlwaysHandleExceptionHandler(); 18static ExceptionHandler transportExceptionHandler = alwaysHandle; 20public static ExceptionHandler AlwaysHandle 28public static ExceptionHandler AsynchronousThreadExceptionHandler 48public static ExceptionHandler TransportExceptionHandler 82ExceptionHandler handler = TransportExceptionHandler; 115readonly ExceptionHandler handler; 119public HandlerWrapper(ExceptionHandler handler) 125public ExceptionHandler Handler