MiddlewareInsertionMode Enumeration |
Namespace:
Autofac.Core.Resolving.Pipeline
Assembly:
Autofac (in Autofac.dll) Version: 6.0.0+39696a967e8826f7f1ebc8c1ff4523c9dd75abe0
Syntax public enum MiddlewareInsertionMode
Public Enumeration MiddlewareInsertionMode
Members
| Member name | Value | Description |
---|
| EndOfPhase | 0 |
The new middleware should be added at the end of the middleware's declared phase. The added middleware will run after any middleware already added
at the same phase.
|
| StartOfPhase | 1 |
The new middleware should be added at the beginning of the middleware's declared phase. The added middleware will run before any middleware
already added at the same phase.
|
See Also