Skip to main content
All docs
V24.2
.NET 8.0+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

IRuleSet.GetRules(Type, ContextIdentifiers) Method

Returns a list of rules for the given type and validation contexts.

Namespace: DevExpress.Persistent.Validation

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

#Declaration

ReadOnlyCollection<IRule> GetRules(
    Type targetType,
    ContextIdentifiers contextIDs
)

#Parameters

Name Type Description
targetType Type

A type of object for which rules will be collected.

contextIDs ContextIdentifiers

The ContextIdentifiers object, which is a set of validation contexts for which rules will be collected. Default contexts are stored in the DefaultContexts enumeration.

#Returns

Type Description
ReadOnlyCollection<IRule>

The list of rules that satisfy both conditions given in parameters.

See Also