Skip to main content
All docs
V25.1
  • .NET Framework 4.6.2+

    IRuleSet.Validate(IObjectSpace, Object, ContextIdentifiers, ValidationFailedDelegate) Method

    Validates an object against the IRuleSet‘s rules with the given validation contexts. If validation fails, the ValidationException is thrown and the method passed as the validationFailedDelegate parameter is called.

    Namespace: DevExpress.Persistent.Validation

    Assembly: DevExpress.Persistent.Base.v25.1.dll

    Declaration

    void Validate(
        IObjectSpace targetObjectSpace,
        object target,
        ContextIdentifiers contextIDs,
        ValidationFailedDelegate validationFailedDelegate
    )

    Parameters

    Name Type Description
    targetObjectSpace IObjectSpace

    An IObjectSpace used by a validation target.

    target Object

    An object to validate.

    contextIDs ContextIdentifiers

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

    validationFailedDelegate DevExpress.Persistent.Validation.ValidationFailedDelegate

    A method to call if the validation fails.

    Remarks

    This method raises the IRuleSet.ValidationCompleted event.

    See Also