Table of Contents

Class InputValidatedEventArgs

Namespace
MADE.Data.Validation
Assembly
MADE.Data.Validation.dll

Defines an event argument for an input validated request.

public class InputValidatedEventArgs : EventArgs
Inheritance
InputValidatedEventArgs
Inherited Members
Extension Methods

Constructors

InputValidatedEventArgs(bool)

Initializes a new instance of the InputValidatedEventArgs class.

public InputValidatedEventArgs(bool isInvalid)

Parameters

isInvalid bool

A value indicating whether the input is invalid.

InputValidatedEventArgs(bool, bool)

Initializes a new instance of the InputValidatedEventArgs class.

public InputValidatedEventArgs(bool isInvalid, bool isDirty)

Parameters

isInvalid bool

A value indicating whether the input is invalid.

isDirty bool

A value indicating whether the input is dirty.

Properties

IsDirty

Gets a value indicating whether the input is dirty.

public bool IsDirty { get; }

Property Value

bool

IsInvalid

Gets a value indicating whether the input is invalid.

public bool IsInvalid { get; }

Property Value

bool