'Declaration
Public Event PostValidated As EventHandler(Of PostValidationEventArgs)
public event EventHandler<PostValidationEventArgs> PostValidated
Event Data
The event handler receives an argument of type PostValidationEventArgs containing data related to this event. The following PostValidationEventArgs properties provide information specific to this event.
Property | Description |
---|---|
ErrorInfo | Error information in case of validation failure. Can be set in event code in PostValidating. |
PostValidation | PostValidation object that fired the event. |
Succeeded | Validation result (assigned in the event code in PostValidating). Default: True |
Value | The value to validate. |
See Also