Class InputValidatedEventArgs
Defines an event argument for an input validated request.
Inheritance
System.Object
InputValidatedEventArgs
Namespace: MADE.Data.Validation
Assembly: MADE.Data.Validation.dll
Syntax
public class InputValidatedEventArgs : EventArgs
Constructors
| Improve this Doc View SourceInputValidatedEventArgs(Boolean)
Initializes a new instance of the InputValidatedEventArgs class.
Declaration
public InputValidatedEventArgs(bool isInvalid)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | isInvalid | A value indicating whether the input is invalid. |
InputValidatedEventArgs(Boolean, Boolean)
Initializes a new instance of the InputValidatedEventArgs class.
Declaration
public InputValidatedEventArgs(bool isInvalid, bool isDirty)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | isInvalid | A value indicating whether the input is invalid. |
System.Boolean | isDirty | A value indicating whether the input is dirty. |
Properties
| Improve this Doc View SourceIsDirty
Gets a value indicating whether the input is dirty.
Declaration
public bool IsDirty { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsInvalid
Gets a value indicating whether the input is invalid.
Declaration
public bool IsInvalid { get; }
Property Value
Type | Description |
---|---|
System.Boolean |