Table of Contents

Class DisableAbpFeaturesAttribute

Namespace
Volo.Abp
Assembly
Volo.Abp.Core.dll
[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

bool

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

bool

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; }

Property Value

bool