Class DisableAbpFeaturesAttribute
[AttributeUsage(AttributeTargets.Class)]
public class DisableAbpFeaturesAttribute : Attribute
- Inheritance
-
DisableAbpFeaturesAttribute
- Inherited Members
- Extension Methods
Constructors
DisableAbpFeaturesAttribute()
public DisableAbpFeaturesAttribute()
Properties
DisableInterceptors
The framework will not register any interceptors for the class. This will cause the all features that depend on interceptors to not work.
public bool DisableInterceptors { get; set; }
Property Value
DisableMiddleware
The framework middleware will skip the class. This will cause the all features that depend on middleware to not work.
public bool DisableMiddleware { get; set; }
Property Value
DisableMvcFilters
The framework will not remove all built-in filters for the class. This will cause the all features that depend on filters to not work.
public bool DisableMvcFilters { get; set; }