Click or drag to resize

MiddlewareInsertionMode Enumeration

Provides the modes of insertion when adding middleware to an IResolvePipelineBuilder.

Namespace:  Autofac.Core.Resolving.Pipeline
Assembly:  Autofac (in Autofac.dll) Version: 6.0.0+39696a967e8826f7f1ebc8c1ff4523c9dd75abe0
Syntax
public enum MiddlewareInsertionMode
Members
  Member nameValueDescription
EndOfPhase0 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.
StartOfPhase1 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