Skip to main content
.NET 6.0+

ActionValidationController Class

A Controller descendant that allows Actions to be used as Validation Contexts.

Namespace: DevExpress.ExpressApp.Validation

Assembly: DevExpress.ExpressApp.Validation.v24.1.dll

Declaration

public class ActionValidationController :
    Controller,
    IModelExtender

Remarks

The ActionValidationController extends the Application Model so that Actions can be used as Validation Contexts. The ValidationContexts property is added to the ActionDesign | Actions | <Action> node. Additionally, the Controller adds a handler to the ActionBase.Executing event of each Action. In the event handler, the ActionValidationController invokes the IRuleSet.ValidateAll method.

Generally, there is no need to inherit from the ActionValidationController, unless you want to disable the capability to use Actions as Validation Contexts. In this instance, inherit from the ActionValidationController, and override the protected OnFrameAssigned method, so that its body is empty.

Inheritance

See Also