Skip to main content
A newer version of this page is available. .

ActionValidationController Class

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

Namespace: DevExpress.ExpressApp.Validation

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

Declaration

public class ActionValidationController :
    Controller,
    IModelExtender

Remarks

To allow using Actions as Contexts, the ActionValidationController extends the Application Model. 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 Validator.RuleSet‘s RuleSet.ValidateAll method.

Generally, there is no need to inherit from the ActionValidationController, unless you want to disable the capability for using 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