Table of Contents

Enum RequestHandlerExecutionMode

Namespace
Sisk.Core.Routing
Assembly
Sisk.Core.dll

Defines when the IRequestHandler should be executed.

[Flags]
public enum RequestHandlerExecutionMode

Fields

AfterResponse = 4

Indicates that the request handler should be executed after the route action.

BeforeResponse = 2

Indicates that the request handler should be executed before the route action.

Both = BeforeResponse | AfterResponse

Indicates that the request handler should be executed before and after the route action.