Table of Contents

Enum RequestExceptionActionProcessorStrategy

Namespace
Caesar.DependencyInjection
Assembly
Caesar.dll
public enum RequestExceptionActionProcessorStrategy

Fields

ApplyForAllExceptions = 1

Actions run for every exception, even ones that an exception handler subsequently handles. The action behavior sits directly inside the handler behavior.

ApplyForUnhandledExceptions = 0

Actions run only for exceptions that no IRequestExceptionHandler<TRequest, TResponse, TException> handled. The action behavior is the outermost.