Skip to main content
.NET 6.0+

RuleSet.RegisterRules(ITypeInfo) Method

Adds validation rules of the class given as a parameter to the RuleSet.

Namespace: DevExpress.Persistent.Validation

Assembly: DevExpress.Persistent.Base.v23.2.dll

Declaration

public void RegisterRules(
    ITypeInfo targetType
)

Parameters

Name Type Description
targetType ITypeInfo

Type, for which the corresponding class will be scanned for validation rules.

Remarks

The class given as a parameter will be searched for RuleBaseAttribute, its descendants and CodeRuleAttribute. Validation rules acquired from these attributes will be added to the RuleSet.

See Also