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
isInvalidboolA 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
isInvalidboolA value indicating whether the input is invalid.
isDirtyboolA value indicating whether the input is dirty.
Properties
IsDirty
Gets a value indicating whether the input is dirty.
public bool IsDirty { get; }
Property Value
IsInvalid
Gets a value indicating whether the input is invalid.
public bool IsInvalid { get; }