Search Results for

    Show / Hide Table of Contents

    Interface IValidatorCollection

    Defines an interface for a collection of validators.

    Namespace: MADE.Data.Validation
    Assembly: MADE.Data.Validation.dll
    Syntax
    public interface IValidatorCollection

    Properties

    | Improve this Doc View Source

    FeedbackMessages

    Gets the validator feedback messages for ones which are invalid.

    Declaration
    IEnumerable<string> FeedbackMessages { get; }
    Property Value
    Type Description
    IEnumerable<System.String>
    | Improve this Doc View Source

    IsDirty

    Gets or sets a value indicating whether the data is dirty.

    Declaration
    bool IsDirty { get; set; }
    Property Value
    Type Description
    System.Boolean
    | Improve this Doc View Source

    IsInvalid

    Gets or sets a value indicating whether the data provided is in an invalid state.

    Declaration
    bool IsInvalid { get; set; }
    Property Value
    Type Description
    System.Boolean

    Methods

    | Improve this Doc View Source

    Validate(Object)

    Executes data validation on the provided value against the validators provided.

    Declaration
    void Validate(object value)
    Parameters
    Type Name Description
    System.Object value

    The value to be validated.

    Extension Methods

    ReflectionExtensions.GetPropertyValue<T>(Object, String)
    ReflectionExtensions.GetPropertyNames(Object)
    • Improve this Doc
    • View Source
    In This Article
    Back to top Copyright (c) MADE Apps