Class ValidationResult
Provides return value of a validation process.
Inherited Members
Namespace: AXSharp.Connector.ValueValidation
Assembly: AXSharp.Connector.dll
Syntax
public class ValidationResult
Constructors
| Edit this page View SourceValidationResult(bool, string)
Creates new instance of ValidationResult
Declaration
public ValidationResult(bool isValid, string validationErrorTip)
Parameters
Type | Name | Description |
---|---|---|
bool | isValid | Result of the validation is valid when true. |
string | validationErrorTip | Validation tip. |
Properties
| Edit this page View SourceIsValid
Gets resutl of the validation. When true validation is valid.
Declaration
public bool IsValid { get; }
Property Value
Type | Description |
---|---|
bool |
ValidationErrorTip
Gets infomation about the validation errror.
Declaration
public string ValidationErrorTip { get; }
Property Value
Type | Description |
---|---|
string |