Class PropertyValidationCompletedEventArgs
Contains information about the
Inheritance
System.Object
PropertyValidationCompletedEventArgs
Namespace: Telerik.XamarinForms.Input.DataForm
Assembly: Telerik.XamarinForms.Input.dll
Syntax
public class PropertyValidationCompletedEventArgs : EventArgs
Constructors
PropertyValidationCompletedEventArgs(Boolean, String, Object, String)
Initializes a new instance of the PropertyValidationCompletedEventArgs class.
Declaration
public PropertyValidationCompletedEventArgs(bool isValid, string propertyName, object valueCandidate, string message)
Parameters
System.Boolean
isValid
The is valid. |
System.String
propertyName
Name of the property. |
System.Object
valueCandidate
|
System.String
message
The message. |
Properties
IsValid
Gets a value indicating whether the value candidate is valid.
Declaration
public bool IsValid { get; }
Property Value
System.Boolean
|
Message
Gets the error message generated by the property validator.
Declaration
public string Message { get; }
Property Value
System.String
|
PropertyName
Gets the name of the property.
Declaration
public string PropertyName { get; }
Property Value
System.String
|
ValueCandidate
Gets the value candidate.
Declaration
public object ValueCandidate { get; }
Property Value
System.Object
|