ValidationError Constructors

Definition

Initializes a new instance of the ValidationError class.

Overloads

ValidationError(ValidationRule, Object)

Initializes a new instance of the ValidationError class with the specified parameters.

ValidationError(ValidationRule, Object, Object, Exception)

Initializes a new instance of the ValidationError class with the specified parameters.

ValidationError(ValidationRule, Object)

Initializes a new instance of the ValidationError class with the specified parameters.

public:
 ValidationError(System::Windows::Controls::ValidationRule ^ ruleInError, System::Object ^ bindingInError);
public ValidationError (System.Windows.Controls.ValidationRule ruleInError, object bindingInError);
new System.Windows.Controls.ValidationError : System.Windows.Controls.ValidationRule * obj -> System.Windows.Controls.ValidationError
Public Sub New (ruleInError As ValidationRule, bindingInError As Object)

Parameters

ruleInError
ValidationRule

The rule that detected validation error.

bindingInError
Object

The BindingExpression or MultiBindingExpression object with the validation error.

Applies to

ValidationError(ValidationRule, Object, Object, Exception)

Initializes a new instance of the ValidationError class with the specified parameters.

public:
 ValidationError(System::Windows::Controls::ValidationRule ^ ruleInError, System::Object ^ bindingInError, System::Object ^ errorContent, Exception ^ exception);
public ValidationError (System.Windows.Controls.ValidationRule ruleInError, object bindingInError, object errorContent, Exception exception);
new System.Windows.Controls.ValidationError : System.Windows.Controls.ValidationRule * obj * obj * Exception -> System.Windows.Controls.ValidationError
Public Sub New (ruleInError As ValidationRule, bindingInError As Object, errorContent As Object, exception As Exception)

Parameters

ruleInError
ValidationRule

The rule that detected validation error.

bindingInError
Object

The BindingExpression or MultiBindingExpression object with the validation error.

errorContent
Object

Information about the error.

exception
Exception

The exception that caused the validation failure. This parameter is optional and can be set to null.

Applies to