Class ValidationInfo
Provides information about failed property validation.
Inheritance
System.Object
ValidationInfo
Namespace: Telerik.XamarinForms.Input.DataForm
Assembly: Telerik.XamarinForms.Input.dll
Syntax
public sealed class ValidationInfo : ValueType
Constructors
ValidationInfo(String, String, Object, String)
Initializes a new instance of the ValidationInfo struct.
Declaration
public ValidationInfo(string propertyName, string propertyDisplayName, object valueCandidate, string errorMessage)
Parameters
System.String
propertyName
Name of the property. |
System.String
propertyDisplayName
|
System.Object
valueCandidate
|
System.String
errorMessage
The error message. |
Fields
ErrorMessage
The error message generated by the validator.
Declaration
public readonly string ErrorMessage
Field Value
System.String
|
PropertyDisplayName
The display name of the property.
Declaration
public readonly string PropertyDisplayName
Field Value
System.String
|
PropertyName
The name of the property.
Declaration
public readonly string PropertyName
Field Value
System.String
|
ValueCandidate
The value candidate.
Declaration
public readonly object ValueCandidate
Field Value
System.Object
|